blob: c02c96940d87c43e6fa6d75680db6595b13834fe [file] [log] [blame]
package test.sample;
import org.testng.annotations.*;
/**
* This class
*
* @author Cedric Beust, Apr 26, 2004
*
*/
public class Sample2 {
@Test
public void method1() {
// System.out.println("@@@@@@@@@@@@@@@@@@@ METHOD1");
}
@Test
public void method2() {
// System.out.println("@@@@@@@@@@@@@@@@@@@ METHOD2");
}
@Test
public void method3() {
// System.out.println("@@@@@@@@@@@@@@@@@@@ METHOD3");
}
}