Home
last modified time | relevance | path

Searched refs:MyInvokedMethodListener (Results 1 – 4 of 4) sorted by relevance

/external/testng/src/test/java/test/listeners/
DEndMillisShouldNotBeZeroTest.java10 import test.listeners.EndMillisShouldNotBeZeroTest.MyInvokedMethodListener;
13 @Listeners(MyInvokedMethodListener.class)
17 public static class MyInvokedMethodListener implements IInvokedMethodListener { class in EndMillisShouldNotBeZeroTest
DListenerTest.java101 MyInvokedMethodListener.beforeInvocation.clear(); in invokedMethodListenersShouldBeOnlyRunOnceWithManyTests()
102 MyInvokedMethodListener.afterInvocation.clear(); in invokedMethodListenersShouldBeOnlyRunOnceWithManyTests()
104 assertThat(MyInvokedMethodListener.beforeInvocation).containsOnly( in invokedMethodListenersShouldBeOnlyRunOnceWithManyTests()
107 assertThat(MyInvokedMethodListener.afterInvocation).containsOnly( in invokedMethodListenersShouldBeOnlyRunOnceWithManyTests()
DBaseWithListener.java5 @Listeners(value = {L3.class, SuiteListener.class, MyInvokedMethodListener.class})
DMyInvokedMethodListener.java10 public class MyInvokedMethodListener implements IInvokedMethodListener { class