C# 클래스 NStub.CSharp.BuildContext.SetupAndTearDownContext

Implementation of a data class used by SetUp and TearDown test-method generation.
상속: SetupAndTearDownContextBase
파일 보기 프로젝트 열기: Jedzia/NStub

공개 메소드들

메소드 설명
SetupAndTearDownContext ( BuildDataDictionary buildData, CodeNamespace codeNamespace, CodeTypeDeclaration testClassDeclaration, CodeMemberMethod setUpMethod, CodeMemberMethod tearDownMethod, ITestObjectComposer creator ) : System.CodeDom

Initializes a new instance of the SetupAndTearDownContext class.

메소드 상세

SetupAndTearDownContext() 공개 메소드

Initializes a new instance of the SetupAndTearDownContext class.
public SetupAndTearDownContext ( BuildDataDictionary buildData, CodeNamespace codeNamespace, CodeTypeDeclaration testClassDeclaration, CodeMemberMethod setUpMethod, CodeMemberMethod tearDownMethod, ITestObjectComposer creator ) : System.CodeDom
buildData NStub.CSharp.ObjectGeneration.BuildDataDictionary The build data dictionary.
codeNamespace System.CodeDom.CodeNamespace The code namespace of the test.
testClassDeclaration System.CodeDom.CodeTypeDeclaration The test class declaration.( early testObject ).
setUpMethod System.CodeDom.CodeMemberMethod A reference to the test setup method.
tearDownMethod System.CodeDom.CodeMemberMethod The tear down method.
creator ITestObjectComposer The test object member field generator of the test SetUp method.
리턴 System.CodeDom