• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.dependsongroup;
2 
3 import org.testng.annotations.BeforeTest;
4 import org.testng.annotations.Test;
5 
6 
7 public class TestFixture2 {
8   @BeforeTest(groups={"test"}, dependsOnGroups={"testgroup"})
setup()9   public void setup() {
10   }
11 
12   @Test(groups={"test"})  //@@
testMethod()13   public void testMethod() {
14   }
15 }
16