blob: 2e438cbc3c39714833e57bf24375d2075a186a8d [file] [log] [blame]
package test.listeners;
import org.testng.annotations.Listeners;
import org.testng.annotations.Test;
@Listeners(ExecutionListenerTest.ExecutionListener.class)
public class ExecutionListener2SampleTest {
@Test
public void f() {}
}