• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.override;
2 
3 import org.testng.annotations.Test;
4 
5 public class OverrideSampleTest {
6 
7   @Test(groups = "goodGroup")
good()8   public void good() {
9   }
10 
11   @Test(groups = "badGroup")
bad()12   public void bad() {
13     throw new RuntimeException("Should not happen");
14   }
15 }
16