Method | Description | |
---|---|---|
Add ( Test test ) : void |
Adds a test to the suite.
|
|
AddToXml ( TNode parentNode, bool recursive ) : TNode |
Returns an XmlNode representing the current result after adding it as a child of the supplied parent node.
|
|
MakeTestResult ( ) : TestResult |
Overridden to return a TestSuiteResult.
|
|
Sort ( ) : void |
Sorts tests under this suite.
|
|
Sort ( IComparer comparer ) : void |
Sorts tests under this suite using the specified comparer.
|
|
TestSuite ( ITypeInfo fixtureType ) : System |
Initializes a new instance of the TestSuite class.
|
|
TestSuite ( Type fixtureType ) : System |
Initializes a new instance of the TestSuite class.
|
|
TestSuite ( string name ) : System |
Initializes a new instance of the TestSuite class.
|
|
TestSuite ( string parentSuiteName, string name ) : System |
Initializes a new instance of the TestSuite class.
|
Method | Description | |
---|---|---|
CheckSetUpTearDownMethods ( Type attrType ) : void |
Check that setup and teardown methods marked by certain attributes meet NUnit's requirements and mark the tests not runnable otherwise.
|
public AddToXml ( TNode parentNode, bool recursive ) : TNode | ||
parentNode | TNode | The parent node. |
recursive | bool | If true, descendant results are included |
return | TNode |
protected CheckSetUpTearDownMethods ( Type attrType ) : void | ||
attrType | Type | The attribute type to check for |
return | void |
public Sort ( IComparer comparer ) : void | ||
comparer | IComparer | The comparer. |
return | void |
public TestSuite ( ITypeInfo fixtureType ) : System | ||
fixtureType | ITypeInfo | Type of the fixture. |
return | System |
public TestSuite ( Type fixtureType ) : System | ||
fixtureType | Type | Type of the fixture. |
return | System |
public TestSuite ( string name ) : System | ||
name | string | The name of the suite. |
return | System |
public TestSuite ( string parentSuiteName, string name ) : System | ||
parentSuiteName | string | Name of the parent suite. |
name | string | The name of the suite. |
return | System |