Uses of Interface
org.testng.ITestClass
-
Packages that use ITestClass Package Description org.testng org.testng.internal org.testng.junit org.testng.reporters -
-
Uses of ITestClass in org.testng
Classes in org.testng that implement ITestClass Modifier and Type Class Description (package private) classTestClassThis class represents a test class: - The test methods - The configuration methods (test and method) - The class fileFields in org.testng with type parameters of type ITestClass Modifier and Type Field Description private java.util.Map<ITestClass,java.util.Set<java.lang.Object>>ClassMethodMap. afterClassMethodsprivate java.util.Map<ITestClass,java.util.Set<java.lang.Object>>ClassMethodMap. beforeClassMethodsprivate java.util.Map<java.lang.Class<?>,ITestClass>TestRunner. m_classMapA map to keep track of Class <-> IClass.Methods in org.testng that return ITestClass Modifier and Type Method Description ITestClassITestNGMethod. getTestClass()Methods in org.testng that return types with arguments of type ITestClass Modifier and Type Method Description java.util.Map<ITestClass,java.util.Set<java.lang.Object>>ClassMethodMap. getInvokedAfterClassMethods()java.util.Map<ITestClass,java.util.Set<java.lang.Object>>ClassMethodMap. getInvokedBeforeClassMethods()java.util.Collection<ITestClass>TestRunner. getTestClasses()Methods in org.testng with parameters of type ITestClass Modifier and Type Method Description default voidIClassListener. onAfterClass(ITestClass testClass)default voidIClassListener. onBeforeClass(ITestClass testClass)voidITestNGMethod. setTestClass(ITestClass cls)Sets the test class having this method. -
Uses of ITestClass in org.testng.internal
Classes in org.testng.internal that implement ITestClass Modifier and Type Class Description classNoOpTestClassFields in org.testng.internal declared as ITestClass Modifier and Type Field Description protected ITestClassBaseTestMethod. m_testClassThe test class on which the test method was found.private ITestClassTestMethodWithDataProviderMethodWorker. m_testClassprivate ITestClassTestMethodArguments.Builder. testClassprivate ITestClassTestMethodArguments. testClassMethods in org.testng.internal that return ITestClass Modifier and Type Method Description ITestClassBaseTestMethod. getTestClass()ITestClassClonedMethod. getTestClass()ITestClassTestMethodArguments. getTestClass()ITestClassWrappedTestNGMethod. getTestClass()Methods in org.testng.internal with parameters of type ITestClass Modifier and Type Method Description (package private) static ITestNGMethod[]TestNgMethodUtils. filterAfterTestMethods(ITestClass testClass, java.util.function.BiPredicate<ITestNGMethod,IClass> predicate)(package private) static ITestNGMethod[]TestNgMethodUtils. filterBeforeTestMethods(ITestClass testClass, java.util.function.BiPredicate<ITestNGMethod,IClass> predicate)private static IDataProviderMethodParameters. findDataProvider(java.lang.Object instance, ITestClass clazz, IAnnotationFinder finder, java.lang.String name, java.lang.Class<?> dataProviderClass, ITestContext context)Find a method that has a @DataProvider(name=name)private static IDataProviderMethodParameters. findDataProvider(java.lang.Object instance, ITestClass clazz, ConstructorOrMethod m, IAnnotationFinder finder, ITestContext context)private static IDataProvidableParameters. findDataProviderInfo(ITestClass clazz, ConstructorOrMethod m, IAnnotationFinder finder)Find the data provider info (data provider name and class) on either @Test(dataProvider),@Factory(dataProvider)on a method or @Factory(dataProvider) on a constructor.static voidMethodHelper. fixMethodsWithClass(ITestNGMethod[] methods, ITestClass testCls, java.util.List<ITestNGMethod> methodList)TestMethodArguments.BuilderTestMethodArguments.Builder. forTestClass(ITestClass testClass)protected voidTestMethodWorker. invokeAfterClassMethods(ITestClass testClass, IMethodInstance mi)Invoke the @AfterClass methods if not done alreadyprotected voidTestMethodWorker. invokeBeforeClassMethods(ITestClass testClass, IMethodInstance mi)Invoke the @BeforeClass methods if not done alreadyvoidBaseTestMethod. setTestClass(ITestClass tc)Sets the test class having this method.voidClonedMethod. setTestClass(ITestClass cls)voidWrappedTestNGMethod. setTestClass(ITestClass cls)Method parameters in org.testng.internal with type arguments of type ITestClass Modifier and Type Method Description static java.util.Map<java.lang.String,java.util.List<ITestNGMethod>>MethodGroupsHelper. findGroupsMethods(java.util.Collection<ITestClass> classes, boolean before)Constructors in org.testng.internal with parameters of type ITestClass Constructor Description NoOpTestClass(ITestClass testClass)TestMethodArguments(java.lang.Object instance, ITestNGMethod tm, java.lang.Object[] parameterValues, int parametersIndex, java.util.Map<java.lang.String,java.lang.String> params, ITestClass testClass, ITestNGMethod[] beforeMethods, ITestNGMethod[] afterMethods, ConfigurationGroupMethods groupMethods)TestMethodWithDataProviderMethodWorker(ITestInvoker testInvoker, ITestNGMethod testMethod, int parameterIndex, java.lang.Object[] parameterValues, java.lang.Object instance, java.util.Map<java.lang.String,java.lang.String> parameters, ITestClass testClass, ITestNGMethod[] beforeMethods, ITestNGMethod[] afterMethods, ConfigurationGroupMethods groupMethods, ITestContext testContext, boolean skipFailedInvocationCounts, int invocationCount, int failureCount, ITestResultNotifier notifier) -
Uses of ITestClass in org.testng.junit
Classes in org.testng.junit that implement ITestClass Modifier and Type Class Description classJUnit3TestClassclassJUnit4TestClassclassJUnitTestClass -
Uses of ITestClass in org.testng.reporters
Fields in org.testng.reporters with type parameters of type ITestClass Modifier and Type Field Description private java.util.Map<java.lang.String,ITestClass>SuiteHTMLReporter. m_classesMethods in org.testng.reporters with parameters of type ITestClass Modifier and Type Method Description private java.lang.StringSuiteHTMLReporter. generateClass(ITestClass cls)private static voidFailedReporter. getAllApplicableConfigs(java.util.Set<ITestNGMethod> configs, ITestClass iTestClass)
-