C# 클래스 Cilador.Fody.Tests.Common.MethodValidator

Provides a way to complete some validation of a cloned method against its source method.
파일 보기 프로젝트 열기: rileywhite/Cilador

공개 메소드들

메소드 설명
ValidateMethod ( MethodInfo actualMethod, MethodInfo expectedMethod ) : void

Validates an actual method (the cloned version) against an expected method (its source).

비공개 메소드들

메소드 설명
ValidateExceptionHandlingClause ( ExceptionHandlingClause actualExceptionHandlingClause, ExceptionHandlingClause expectedExceptionHandlingClause ) : void

Validates an actual exception handling clause (the cloned version) against an expected one (its source).

ValidateLocalVariable ( LocalVariableInfo actualLocalVariable, LocalVariableInfo expectedLocalVariable ) : void

Validates an actual exception handling clause (the cloned version) against an expected one (its source).

ValidateMethodBody ( MethodBody actualMethodBody, MethodBody expectedMethodBody ) : void

Validates an actual method body (the cloned version) against an expected method body (its source).

메소드 상세

ValidateMethod() 공개 정적인 메소드

Validates an actual method (the cloned version) against an expected method (its source).
public static ValidateMethod ( MethodInfo actualMethod, MethodInfo expectedMethod ) : void
actualMethod System.Reflection.MethodInfo Method to validate.
expectedMethod System.Reflection.MethodInfo Method with expected info.
리턴 void