Home
last modified time | relevance | path

Searched refs:ConstructorOrMethod (Results 1 – 13 of 13) sorted by relevance

/external/testng/src/main/java/org/testng/internal/
DConstructorOrMethod.java11 public class ConstructorOrMethod { class
17 public ConstructorOrMethod(Method m) { in ConstructorOrMethod() method in ConstructorOrMethod
21 public ConstructorOrMethod(Constructor c) { in ConstructorOrMethod() method in ConstructorOrMethod
62 ConstructorOrMethod other = (ConstructorOrMethod) obj; in equals()
DFactoryMethod.java31 public FactoryMethod(ConstructorOrMethod com, in FactoryMethod()
88 ConstructorOrMethod com = getConstructorOrMethod(); in invoke()
101 ConstructorOrMethod com = getConstructorOrMethod(); in invoke()
DClassHelper.java136 public static ConstructorOrMethod findDeclaredFactoryMethod(Class<?> cls, in findDeclaredFactoryMethod()
138 ConstructorOrMethod result = null; in findDeclaredFactoryMethod()
144 result = new ConstructorOrMethod(method); in findDeclaredFactoryMethod()
154 result = new ConstructorOrMethod(constructor); in findDeclaredFactoryMethod()
DBaseTestMethod.java41 protected final transient ConstructorOrMethod m_method;
82 this(methodName, new ConstructorOrMethod(method), annotationFinder, instance); in BaseTestMethod()
85 …public BaseTestMethod(String methodName, ConstructorOrMethod com, IAnnotationFinder annotationFind… in BaseTestMethod()
768 public ConstructorOrMethod getConstructorOrMethod() { in getConstructorOrMethod()
DConfigurationMethod.java47 private ConfigurationMethod(ConstructorOrMethod com, in ConfigurationMethod()
102 …this(new ConstructorOrMethod(method), annotationFinder, isBeforeSuite, isAfterSuite, isBeforeTest,… in ConfigurationMethod()
106 public ConfigurationMethod(ConstructorOrMethod com, in ConfigurationMethod()
DMethodInvocationHelper.java93 final ConstructorOrMethod com = method.getConstructorOrMethod(); in invokeDataProvider()
112 } else if (cls.equals(ConstructorOrMethod.class)) { in invokeDataProvider()
DTestNGMethodFinder.java216 ITestNGMethod confMethod = new ConfigurationMethod(new ConstructorOrMethod(method), in addConfigurationMethod()
DClonedMethod.java373 public ConstructorOrMethod getConstructorOrMethod() { in getConstructorOrMethod()
DParameters.java249 ConstructorOrMethod m, in findDataProvider()
276 private static IDataProvidable findDataProviderInfo(ITestClass clazz, ConstructorOrMethod m, in findDataProviderInfo()
DTestNGClassFinder.java137 ConstructorOrMethod factoryMethod = in TestNGClassFinder()
/external/testng/src/main/java/org/testng/
DITestNGMethod.java4 import org.testng.internal.ConstructorOrMethod;
261 ConstructorOrMethod getConstructorOrMethod(); in getConstructorOrMethod()
/external/testng/src/main/java/org/testng/reporters/
DXMLSuiteResultWriter.java12 import org.testng.internal.ConstructorOrMethod;
224 ConstructorOrMethod cm = testResult.getMethod().getConstructorOrMethod(); in getTestResultAttributes()
/external/testng/src/test/java/org/testng/internal/
DMethodInstanceTest.java556 public ConstructorOrMethod getConstructorOrMethod() { in getConstructorOrMethod()