Package org.testng
Interface ITestClassFinder
-
- All Known Implementing Classes:
BaseClassFinder,TestNGClassFinder
public interface ITestClassFinderThis class is used by TestNG to locate the test classes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IClass[]findTestClasses()IClassgetIClass(java.lang.Class<?> cls)Return the IClass for a given class
-
-
-
Method Detail
-
findTestClasses
IClass[] findTestClasses()
- Returns:
- An array of all the classes that contain test methods. This method usually returns an array of one class, which is the class on which TestNG is running, except in the following cases. - TestNG: the class contains an @Factory method - JUnit: the class contains a suite() method
-
getIClass
IClass getIClass(java.lang.Class<?> cls)
Return the IClass for a given class- Parameters:
cls- The class- Returns:
- The related
IClass
-
-