Home | History | Annotate | Download | only in sample
      1 package test.sample;
      2 
      3 import org.testng.annotations.Test;
      4 
      5 /**
      6  * This class
      7  *
      8  * @author Cedric Beust, Apr 26, 2004
      9  *
     10  */
     11 
     12 public class Sample2 {
     13 
     14   @Test(groups = "g1")
     15   public void method1() {
     16 //    System.out.println("@@@@@@@@@@@@@@@@@@@ METHOD1");
     17   }
     18 
     19   @Test
     20   public void method2() {
     21 //    System.out.println("@@@@@@@@@@@@@@@@@@@ METHOD2");
     22   }
     23 
     24   @Test
     25   public void method3() {
     26 //    System.out.println("@@@@@@@@@@@@@@@@@@@ METHOD3");
     27   }
     28 
     29 
     30 }
     31