blob: c58a7b14dd24a84f1a499ae0bc2c97180e30566f [file] [log] [blame]
package test.override;
import org.testng.annotations.Test;
public class OverrideSampleTest {
@Test(groups = "goodGroup")
public void good() {
}
@Test(groups = "badGroup")
public void bad() {
throw new RuntimeException("Should not happen");
}
}