blob: 2499e7e2440b85595db142191d8e3ebb846f294c [file] [log] [blame]
package test.listeners;
import org.testng.annotations.Listeners;
@Listeners(value = L3.class)
class BaseWithListener {
static int m_count = 0;
public static void incrementCount() {
m_count++;
}
}