IClassJUnit3TestClass, JUnit4TestClass, JUnitTestClass, NoOpTestClasspublic interface ITestClass extends IClass
| Modifier and Type | Method | Description |
|---|---|---|
ITestNGMethod[] |
getAfterClassMethods() |
Returns all the methods that should be invoked
after all the tests have been run on this class.
|
ITestNGMethod[] |
getAfterGroupsMethods() |
Returns all @Configuration methods that should be invoked after certain groups.
|
ITestNGMethod[] |
getAfterSuiteMethods() |
Returns all the methods that should be invoked
after the suite has run.
|
ITestNGMethod[] |
getAfterTestConfigurationMethods() |
Returns all @Configuration methods that should be invoked last before any others
in the current test.
|
ITestNGMethod[] |
getAfterTestMethods() |
Returns all the methods that should be invoked
after a test method completes.
|
ITestNGMethod[] |
getBeforeClassMethods() |
Return all the methods that should be invoked
after the test class has been created and before
any of its test methods is invoked.
|
ITestNGMethod[] |
getBeforeGroupsMethods() |
Returns all @Configuration methods that should be invoked before certain groups.
|
ITestNGMethod[] |
getBeforeSuiteMethods() |
Returns All the methods that should be invoked
before the suite is run.
|
ITestNGMethod[] |
getBeforeTestConfigurationMethods() |
Returns all @Configuration methods that should be invoked before any others in the
current test.
|
ITestNGMethod[] |
getBeforeTestMethods() |
Returns all the methods that should be invoked
before a test method is invoked.
|
ITestNGMethod[] |
getTestMethods() |
Returns all the applicable test methods.
|
addInstance, getInstanceCount, getInstanceHashCodes, getInstances, getName, getRealClass, getTestName, getXmlClass, getXmlTestITestNGMethod[] getTestMethods()
ITestNGMethod[] getBeforeTestMethods()
ITestNGMethod[] getAfterTestMethods()
ITestNGMethod[] getBeforeClassMethods()
ITestNGMethod[] getAfterClassMethods()
ITestNGMethod[] getBeforeSuiteMethods()
ITestNGMethod[] getAfterSuiteMethods()
ITestNGMethod[] getBeforeTestConfigurationMethods()
ITestNGMethod[] getAfterTestConfigurationMethods()
ITestNGMethod[] getBeforeGroupsMethods()
ITestNGMethod[] getAfterGroupsMethods()