01: package test.dependsongroups; 02: 03: public class TestFixture1 { 04: /** 05: * @testng.before-method groups="test,testgroup" 06: */ 07: public void setup() { 08: System.out.println("TestFixture setup"); 09: } 10: 11: }