C# Class Jwc.Experiment.Idioms.IdiomaticAssertion

Represents base class implementing IIdiomaticAssertion.
Inheritance: IIdiomaticAssertion
ファイルを表示 Open project: jwChung/Experimentalism

Public Methods

Method Description
Verify ( Assembly assembly ) : void

Verifies that the idiomatic assertion can be verified for the specified assembly.

Verify ( ConstructorInfo constructor ) : void

Verifies that the idiomatic assertion can be verified for the specified constructor.

Verify ( FieldInfo field ) : void

Verifies that the idiomatic assertion can be verified for the specified field.

Verify ( MemberInfo member ) : void

Verifies that the idiomatic assertion can be verified for the specified member.

Verify ( MethodInfo method ) : void

Verifies that the idiomatic assertion can be verified for the specified method.

Verify ( Type type ) : void

Verifies that the idiomatic assertion can be verified for the specified type.

Private Methods

Method Description
Verify ( EventInfo @event ) : void
Verify ( PropertyInfo property ) : void

Method Details

Verify() public method

Verifies that the idiomatic assertion can be verified for the specified assembly.
public Verify ( Assembly assembly ) : void
assembly System.Reflection.Assembly /// The assembly. ///
return void

Verify() public method

Verifies that the idiomatic assertion can be verified for the specified constructor.
public Verify ( ConstructorInfo constructor ) : void
constructor System.Reflection.ConstructorInfo /// The constructor. ///
return void

Verify() public method

Verifies that the idiomatic assertion can be verified for the specified field.
public Verify ( FieldInfo field ) : void
field System.Reflection.FieldInfo /// The field. ///
return void

Verify() public method

Verifies that the idiomatic assertion can be verified for the specified member.
public Verify ( MemberInfo member ) : void
member System.Reflection.MemberInfo /// The member. ///
return void

Verify() public method

Verifies that the idiomatic assertion can be verified for the specified method.
public Verify ( MethodInfo method ) : void
method System.Reflection.MethodInfo /// The method. ///
return void

Verify() public method

Verifies that the idiomatic assertion can be verified for the specified type.
public Verify ( Type type ) : void
type System.Type /// The type. ///
return void