C# Class NUnit.Framework.Internal.Commands.TestSuiteCommand

TODO: Documentation needed for class
Inheritance: NUnit.Framework.Internal.Commands.TestCommand
Mostrar archivo Open project: pjcollins/Andr.Unit Class Usage Examples

Public Methods

Method Description
DoOneTimeSetUp ( TestExecutionContext context ) : void

Does the one time set up for a suite command. Broadly defined, this includes: 1. Applying changes specified by attributes to the context 2. Constructing the user fixture instance 3. Calling the one time setup methods themselves

DoOneTimeTearDown ( TestExecutionContext context ) : void

Does the one time tear down for a suite command.

Execute ( TestExecutionContext context ) : TestResult

TODO: Documentation needed for method

TestSuiteCommand ( TestSuite test ) : System

TODO: Documentation needed for constructor

Private Methods

Method Description
IsStaticClass ( Type type ) : bool

Method Details

DoOneTimeSetUp() public method

Does the one time set up for a suite command. Broadly defined, this includes: 1. Applying changes specified by attributes to the context 2. Constructing the user fixture instance 3. Calling the one time setup methods themselves
public DoOneTimeSetUp ( TestExecutionContext context ) : void
context TestExecutionContext The execution context to use in running the test.
return void

DoOneTimeTearDown() public method

Does the one time tear down for a suite command.
public DoOneTimeTearDown ( TestExecutionContext context ) : void
context TestExecutionContext The execution context to use in running the test.
return void

Execute() public method

TODO: Documentation needed for method
public Execute ( TestExecutionContext context ) : TestResult
context TestExecutionContext The execution context in which the test should run.
return TestResult

TestSuiteCommand() public method

TODO: Documentation needed for constructor
public TestSuiteCommand ( TestSuite test ) : System
test TestSuite
return System