Uses of Interface
org.testng.IClass
-
Packages that use IClass Package Description org.testng org.testng.internal org.testng.junit -
-
Uses of IClass in org.testng
Subinterfaces of IClass in org.testng Modifier and Type Interface Description interfaceITestClassThis class represents a test class: The test methods The configuration methods (test and method) The class file Note that the methods returned by instances of this class are expected to be correct at runtime.Methods in org.testng that return IClass Modifier and Type Method Description IClass[]ITestClassFinder. findTestClasses()IClassITestClassFinder. getIClass(java.lang.Class<?> cls)Return the IClass for a given classIClassITestResult. getTestClass()Methods in org.testng with parameters of type IClass Modifier and Type Method Description booleanITestNGMethod. canRunFromClass(IClass testClass)Returns if this ITestNGMethod can be invoked from within IClass.com.google.inject.InjectorITestContext. getInjector(IClass iClass)com.google.inject.InjectorTestRunner. getInjector(IClass iClass) -
Uses of IClass in org.testng.internal
Classes in org.testng.internal that implement IClass Modifier and Type Class Description classClassImplImplementation of an IClass.classNoOpTestClassMethods in org.testng.internal that return IClass Modifier and Type Method Description protected IClassBaseClassFinder. findOrCreateIClass(ITestContext context, java.lang.Class<?> cls, XmlClass xmlClass, java.lang.Object instance, IAnnotationFinder annotationFinder, ITestObjectFactory objectFactory)protected IClassBaseClassFinder. findOrCreateIClass(ITestContext context, java.lang.Class<?> cls, XmlClass xmlClass, java.lang.Object instance, XmlTest xmlTest, IAnnotationFinder annotationFinder, ITestObjectFactory objectFactory)Deprecated.- This method stands deprecated as of TestNG v6.13IClass[]BaseClassFinder. findTestClasses()IClassBaseClassFinder. getIClass(java.lang.Class<?> cls)protected IClassBaseTestMethod. getIClass()IClassTestResult. getTestClass()Methods in org.testng.internal with parameters of type IClass Modifier and Type Method Description booleanBaseTestMethod. canRunFromClass(IClass testClass)Returns if this ITestNGMethod can be invoked from within IClass.booleanClonedMethod. canRunFromClass(IClass testClass)booleanWrappedTestNGMethod. canRunFromClass(IClass testClass)voidTestResult. init(IClass testClass, java.lang.Object instance, ITestNGMethod method, java.lang.Throwable throwable, long start, long end, ITestContext context)voidIInvoker. invokeConfigurations(IClass testClass, ITestNGMethod[] allMethods, XmlSuite suite, java.util.Map<java.lang.String,java.lang.String> parameters, java.lang.Object[] parameterValues, java.lang.Object instance)Invoke configuration methods if they belong to the same TestClass passed in parameter..voidInvoker. invokeConfigurations(IClass testClass, ITestNGMethod[] allMethods, XmlSuite suite, java.util.Map<java.lang.String,java.lang.String> params, java.lang.Object[] parameterValues, java.lang.Object instance)Invoke configuration methods if they belong to the same TestClass passed in parameter..protected voidBaseClassFinder. putIClass(java.lang.Class<?> cls, IClass iClass)voidTestResult. setTestClass(IClass testClass)Method parameters in org.testng.internal with type arguments of type IClass Modifier and Type Method Description static java.lang.ObjectClassHelper. createInstance(java.lang.Class<?> declaringClass, java.util.Map<java.lang.Class<?>,IClass> classes, XmlTest xmlTest, IAnnotationFinder finder, ITestObjectFactory objectFactory)Create an instance for the given class.static java.lang.ObjectClassHelper. createInstance1(java.lang.Class<?> declaringClass, java.util.Map<java.lang.Class<?>,IClass> classes, XmlTest xmlTest, IAnnotationFinder finder, IObjectFactory objectFactory)Constructors in org.testng.internal with parameters of type IClass Constructor Description TestResult(IClass testClass, java.lang.Object instance, ITestNGMethod method, java.lang.Throwable throwable, long start, long end, ITestContext context)Constructor parameters in org.testng.internal with type arguments of type IClass Constructor Description ClassImpl(ITestContext context, java.lang.Class<?> cls, XmlClass xmlClass, java.lang.Object instance, java.util.Map<java.lang.Class<?>,IClass> classes, IAnnotationFinder annotationFinder, ITestObjectFactory objectFactory)ClassImpl(ITestContext context, java.lang.Class<?> cls, XmlClass xmlClass, java.lang.Object instance, java.util.Map<java.lang.Class<?>,IClass> classes, XmlTest xmlTest, IAnnotationFinder annotationFinder, ITestObjectFactory objectFactory)Deprecated.- This constructor is un-used within TestNG and hence stands deprecated as of TestNG v6.13 -
Uses of IClass in org.testng.junit
Classes in org.testng.junit that implement IClass Modifier and Type Class Description classJUnit3TestClassclassJUnit4TestClassclassJUnitTestClass
-