TestFixture2.java :  » Testing » testng » test » dependsongroups » Java Open Source

Java Open Source » Testing » testng 
testng » test » dependsongroups » TestFixture2.java
package test.dependsongroups;


public class TestFixture2 {
  /**
   * @testng.before-method groups="test" dependsOnGroups="testgroup"
   */
  public void setup() {
    System.out.println("TestFixture2 setup");
  }

  /**
   * @testng.test groups="test"
   */
  public void testMethod() {
    System.out.println("test method");
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.