Package org.testng.internal
Interface ITestClassConfigInfo
-
public interface ITestClassConfigInfo
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static java.util.List<ITestNGMethod>
allAfterClassMethods(ITestClass tc)
static java.util.List<ITestNGMethod>
allBeforeClassMethods(ITestClass tc)
java.util.List<ITestNGMethod>
getAllAfterClassMethods()
java.util.List<ITestNGMethod>
getAllBeforeClassMethods()
get all before class config methodsjava.util.List<ITestNGMethod>
getInstanceAfterClassMethods(java.lang.Object instance)
java.util.List<ITestNGMethod>
getInstanceBeforeClassMethods(java.lang.Object instance)
Query the instance before class methods from config methods map.
-
-
-
Method Detail
-
getAllBeforeClassMethods
java.util.List<ITestNGMethod> getAllBeforeClassMethods()
get all before class config methods- Returns:
- all before class config methods
-
getAllAfterClassMethods
java.util.List<ITestNGMethod> getAllAfterClassMethods()
-
getInstanceBeforeClassMethods
java.util.List<ITestNGMethod> getInstanceBeforeClassMethods(java.lang.Object instance)
Query the instance before class methods from config methods map.- Parameters:
instance
- object hashcode- Returns:
- All before class methods of instance
-
getInstanceAfterClassMethods
java.util.List<ITestNGMethod> getInstanceAfterClassMethods(java.lang.Object instance)
-
allBeforeClassMethods
static java.util.List<ITestNGMethod> allBeforeClassMethods(ITestClass tc)
-
allAfterClassMethods
static java.util.List<ITestNGMethod> allAfterClassMethods(ITestClass tc)
-
-