Searched defs:testMethod (Results 1 - 25 of 56) sorted by relevance

123

/external/testng/src/test/java/test/
H A DIndividualMethodsTest.java25 public void testMethod() method in class:IndividualMethodsTest
/external/testng/src/test/java/test/dataprovider/
H A DInnexistentDataProvider.java11 public void testMethod(String s) method in class:InnexistentDataProvider
/external/testng/src/test/java/test/dependsongroup/
H A DTestFixture2.java13 public void testMethod() { method in class:TestFixture2
/external/junit-params/src/main/java/junitparams/internal/
H A DInvokeNonParameterisedMethod.java11 private final FrameworkMethod testMethod; field in class:InvokeNonParameterisedMethod
14 InvokeNonParameterisedMethod(FrameworkMethod testMethod, Object testClass) { argument
15 this.testMethod = testMethod;
21 testMethod.invokeExplosively(testClass);
/external/testng/src/test/java/test/configuration/
H A DConfigurationWithParameters.java19 public void testMethod(String param) { method in class:ConfigurationWithParameters
/external/testng/src/test/java/test/factory/
H A DMyTest.java19 public void testMethod() { method in class:MyTest
/external/testng/src/test/java/test/reports/
H A DReporterTest.java15 public void testMethod() { method in class:ReporterTest
/external/junit/src/main/java/org/junit/internal/runners/statements/
H A DInvokeMethod.java7 private final FrameworkMethod testMethod; field in class:InvokeMethod
10 public InvokeMethod(FrameworkMethod testMethod, Object target) { argument
11 this.testMethod = testMethod;
17 testMethod.invokeExplosively(target);
/external/testng/src/main/java/org/testng/
H A DIAnnotationTransformer.java17 * testConstructor and testMethod will be non-null.
25 * @param testMethod If the annotation was found on a method,
29 Constructor testConstructor, Method testMethod);
28 transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) argument
H A DIAnnotationTransformer2.java19 * testConstructor and testMethod will be non-null.
27 * @param testMethod If the annotation was found on a method,
31 Constructor testConstructor, Method testMethod);
30 transform(IConfigurationAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) argument
/external/testng/src/main/java/org/testng/internal/annotations/
H A DDefaultAnnotationTransformer.java15 Constructor testConstructor, Method testMethod)
14 transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) argument
/external/testng/src/test/java/test/annotationtransformer/
H A DAnnotationTransformerInTestngXml.java17 Constructor testConstructor, Method testMethod) {
16 transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) argument
H A DConfigurationTransformer.java16 Constructor testConstructor, Method testMethod)
22 Constructor testConstructor, Method testMethod)
30 public void transform(IDataProviderAnnotation annotation, Method testMethod) { argument
34 public void transform(IFactoryAnnotation annotation, Method testMethod) { argument
15 transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) argument
21 transform(IConfigurationAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) argument
H A DDataProviderTransformer.java16 Constructor testConstructor, Method testMethod)
21 public void transform(IDataProviderAnnotation annotation, Method testMethod) { argument
27 Constructor testConstructor, Method testMethod)
32 public void transform(IFactoryAnnotation annotation, Method testMethod) { argument
15 transform(IConfigurationAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) argument
26 transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) argument
H A DFactoryTransformer.java16 Constructor testConstructor, Method testMethod)
21 public void transform(IDataProviderAnnotation annotation, Method testMethod) { argument
26 Constructor testConstructor, Method testMethod)
31 public void transform(IFactoryAnnotation annotation, Method testMethod) { argument
15 transform(IConfigurationAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) argument
25 transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) argument
H A DMyListenerTransformer.java22 Constructor testConstructor, Method testMethod) {}
32 Method testMethod) {}
21 transform(IConfigurationAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) argument
31 transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) argument
H A DMyTimeOutTransformer.java13 Constructor testConstructor, Method testMethod)
12 transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) argument
H A DMyTransformer.java17 Constructor testConstructor, Method testMethod) {
19 if (testMethod != null) {
20 switch (testMethod.getName()) {
31 methodNames.add(testMethod.getName());
16 transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) argument
H A DAnnotationTransformerInvocationCountTest.java22 Constructor testConstructor, Method testMethod) {
23 if ("concurrencyTest".equals(testMethod.getName())) {
21 transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) argument
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
H A DInvokeMethod003Debuggee.java26 public static int testMethod(Object obj) throws Throwable { method in class:InvokeMethod003Debuggee
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
H A DInvokeMethod002Debuggee.java28 public int testMethod(Object obj) throws Throwable { method in class:InvokeMethod002Debuggee.TestClass
37 // The instance used to invoke "TestClass.testMethod".
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
H A DRedefineClassesDebuggee.java41 logWriter.println("--> Debuggee: BEFORE redefine: RedefineClass_Debuggee.testMethod() = "
42 + RedefineClass_Debuggee.testMethod());
46 String testMethodResult = RedefineClass_Debuggee.testMethod();
47 logWriter.println("--> Debuggee: After redefine: RedefineClass_Debuggee.testMethod() = "
62 static String testMethod() { method in class:RedefineClass_Debuggee
/external/javassist/src/test/test/javassist/proxy/
H A DProxyFactoryCompatibilityTest.java56 proxy1.testMethod();
63 proxy2.testMethod();
80 proxy3.testMethod();
86 proxy4.testMethod();
97 public void testMethod() method in class:ProxyFactoryCompatibilityTest.TestClass
112 public void testMethod(); method in interface:ProxyFactoryCompatibilityTest.TestInterface
/external/testng/src/main/java/org/testng/internal/
H A DExpectedExceptionsHolder.java84 public TestException noException(ITestNGMethod testMethod) { argument
88 return new TestException("Method " + testMethod + " should have thrown an exception of "
H A DIInvoker.java39 * @param testMethod
46 public List<ITestResult> invokeTestMethods(ITestNGMethod testMethod, argument

Completed in 917 milliseconds

123