1 package test.dependent; 2 3 import static org.testng.Assert.fail; 4 5 import org.testng.annotations.Test; 6 7 @Test(groups="group1") 8 public class C1 { 9 failingTest()10 public void failingTest() { 11 fail("always fails"); 12 } 13 14 } 15