TestNG/src/tests/TestA.java

26 lines
405 B
Java

package tests;
import org.testng.annotations.Test;
public class TestA extends BaseTest
{
@Test
public void testMethod01()
{
System.out.println("' ' ' ' TestA.testMethod01()");
}
@Test
public void testMethod02()
{
System.out.println("' ' ' ' TestA.testMethod02()");
}
@Test
public void testMethod03()
{
System.out.println("' ' ' ' TestA.testMethod03()");
}
}