Home
last modified time | relevance | path

Searched refs:IInvokedMethod (Results 1 – 25 of 25) sorted by relevance

/external/testng/src/test/java/org/testng/internal/invokers/
DInvokedMethodListenerSubtypeTest.java4 import org.testng.IInvokedMethod;
36 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { in beforeInvocation()
39 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { in afterInvocation()
45 public void beforeInvocation(IInvokedMethod method, ITestResult testResult, in beforeInvocation()
49 public void afterInvocation(IInvokedMethod method, ITestResult testResult, in afterInvocation()
53 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { in beforeInvocation()
56 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { in afterInvocation()
/external/testng/src/test/java/test/invokedmethodlistener/
DInvokedMethodListener.java3 import org.testng.IInvokedMethod;
12 private final List<IInvokedMethod> m_methods = Lists.newArrayList();
15 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { in beforeInvocation()
20 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { in afterInvocation()
23 public List<IInvokedMethod> getInvokedMethods() { in getInvokedMethods()
DSample2.java3 import org.testng.IInvokedMethod;
24 public void afterInvocation(IInvokedMethod m, ITestResult tr) in afterInvocation()
33 public void beforeInvocation(IInvokedMethod arg0, ITestResult arg1) in beforeInvocation()
DInvokedMethodListenerTest.java4 import org.testng.IInvokedMethod;
63 List<IInvokedMethod> m = listener.getInvokedMethods(); in sameMethodInvokedMultipleTimesShouldHaveDifferentTimeStamps()
64 IInvokedMethod beforeSuite = m.get(0); in sameMethodInvokedMultipleTimesShouldHaveDifferentTimeStamps()
67 IInvokedMethod after1 = m.get(2); in sameMethodInvokedMultipleTimesShouldHaveDifferentTimeStamps()
70 IInvokedMethod after2 = m.get(4); in sameMethodInvokedMultipleTimesShouldHaveDifferentTimeStamps()
133 List<IInvokedMethod> m = listener.getInvokedMethods(); in assertIssue87()
DMyListener.java3 import org.testng.IInvokedMethod;
17 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { in afterInvocation()
30 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { in beforeInvocation()
DInvokedMethodNameListener.java3 import org.testng.IInvokedMethod;
18 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { in beforeInvocation()
22 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { in afterInvocation()
/external/testng/src/main/java/org/testng/internal/invokers/
DInvokedMethodListenerInvoker.java3 import org.testng.IInvokedMethod;
60 IInvokedMethod invokedMethod) { in invokeListener()
76 void callMethod(LISTENER_TYPE listener, IInvokedMethod invokedMethod, ITestResult testResult, in callMethod()
82 public void callMethod(IInvokedMethodListener listener, IInvokedMethod invokedMethod, in callMethod()
90 public void callMethod(IInvokedMethodListener2 listener, IInvokedMethod invokedMethod, in callMethod()
98 public void callMethod(IInvokedMethodListener listener, IInvokedMethod invokedMethod, in callMethod()
106 public void callMethod(IInvokedMethodListener2 listener, IInvokedMethod invokedMethod, in callMethod()
/external/testng/src/main/java/org/testng/reporters/jq/
DChronologicalPanel.java3 import org.testng.IInvokedMethod;
32 List<IInvokedMethod> invokedMethods = suite.getAllInvokedMethods(); in getContent()
34 Collections.sort(invokedMethods, new Comparator<IInvokedMethod>() { in getContent()
36 public int compare(IInvokedMethod arg0, IInvokedMethod arg1) { in getContent()
44 for (IInvokedMethod im : invokedMethods) { in getContent()
/external/testng/src/test/java/test/listeners/
DMyInvokedMethodListener.java3 import org.testng.IInvokedMethod;
17 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { in beforeInvocation()
22 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { in afterInvocation()
26 private static void increments(Map<String, Integer> map, IInvokedMethod method) { in increments()
DLListener.java3 import org.testng.IInvokedMethod;
11 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { in beforeInvocation()
16 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { in afterInvocation()
DEndMillisShouldNotBeZeroTest.java3 import org.testng.IInvokedMethod;
20 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { in beforeInvocation()
24 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { in afterInvocation()
DSuiteAndInvokedMethodListenerTest.java4 import org.testng.IInvokedMethod;
31 public void beforeInvocation(IInvokedMethod method, ITestResult result) { in beforeInvocation()
36 public void afterInvocation(IInvokedMethod method, ITestResult result) { in afterInvocation()
DSuiteListener2.java25 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { in beforeInvocation()
30 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { in afterInvocation()
/external/testng/src/test/java/test/enable/
DInvokedMethodListener.java3 import org.testng.IInvokedMethod;
16 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { in beforeInvocation()
21 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { in afterInvocation()
/external/testng/src/test/java/test/
DInvokedMethodNameListener.java3 import org.testng.IInvokedMethod;
20 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { in beforeInvocation()
25 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { in afterInvocation()
/external/testng/src/main/java/org/testng/reporters/
DEmailableReporter.java3 import org.testng.IInvokedMethod;
316 List<IInvokedMethod> r = Lists.newArrayList(); in getMethodSet()
317 List<IInvokedMethod> invokedMethods = suite.getAllInvokedMethods(); in getMethodSet()
318 for (IInvokedMethod im : invokedMethods) { in getMethodSet()
323 Arrays.sort(r.toArray(new IInvokedMethod[r.size()]), new TestSorter()); in getMethodSet()
327 for (IInvokedMethod m : r) { in getMethodSet()
491 private static final class TestSorter implements Comparator<IInvokedMethod> {
496 public int compare(IInvokedMethod o1, IInvokedMethod o2) { in compare()
DSuiteHTMLReporter.java5 import org.testng.IInvokedMethod;
358 Collection<IInvokedMethod> invokedMethods = suite.getAllInvokedMethods(); in generateMethodsChronologically()
364 IInvokedMethod m1 = (IInvokedMethod) o1; in generateMethodsChronologically()
365 IInvokedMethod m2 = (IInvokedMethod) o2; in generateMethodsChronologically()
374 for (IInvokedMethod iim : invokedMethods) { in generateMethodsChronologically()
/external/testng/src/main/java/org/testng/
DIInvokedMethodListener.java9 void beforeInvocation(IInvokedMethod method, ITestResult testResult); in beforeInvocation()
11 void afterInvocation(IInvokedMethod method, ITestResult testResult); in afterInvocation()
DIInvokedMethodListener2.java13 void beforeInvocation(IInvokedMethod method, ITestResult testResult, in beforeInvocation()
19 void afterInvocation(IInvokedMethod method, ITestResult testResult, in afterInvocation()
DSuiteRunner.java75 private List<IInvokedMethod> m_invokedMethods =
76 Collections.synchronizedList(Lists.<IInvokedMethod>newArrayList());
658 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { in afterInvocation()
662 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { in beforeInvocation()
674 public List<IInvokedMethod> getAllInvokedMethods() { in getAllInvokedMethods()
DIInvokedMethod.java8 public interface IInvokedMethod { interface
DISuite.java75 public List<IInvokedMethod> getAllInvokedMethods(); in getAllInvokedMethods()
DTestRunner.java1507 for (IInvokedMethod im : m_invokedMethods) { in dumpInvokedMethods()
1525 for (IInvokedMethod im : m_invokedMethods) { in getInvokedMethods()
/external/testng/src/main/java/org/testng/internal/
DInvokedMethod.java5 import org.testng.IInvokedMethod;
9 public class InvokedMethod implements Serializable, IInvokedMethod {
DInvoker.java19 import org.testng.IInvokedMethod;
547 …private void runInvokedMethodListeners(InvokedMethodListenerMethod listenerMethod, IInvokedMethod in runInvokedMethodListeners()