forked from Zakaria/testNG
33 lines
742 B
Java
33 lines
742 B
Java
package zacksolutions;
|
|
|
|
import org.testng.annotations.BeforeTest;
|
|
import org.testng.annotations.Test;
|
|
|
|
public class TestHomePage {
|
|
|
|
@Test
|
|
public static void testCaseSixteen() {
|
|
System.out.println("Debug the sixteenth case");
|
|
}
|
|
|
|
@Test
|
|
public static void testCaseSeventeen() {
|
|
System.out.println("Debug the seventeenth case");
|
|
}
|
|
|
|
@Test
|
|
public static void testCaseEighteen() {
|
|
System.out.println("Debug the eighteenth case");
|
|
}
|
|
|
|
@Test
|
|
public static void testCaseNineteen() {
|
|
System.out.println("Debug the nineteenth case");
|
|
}
|
|
|
|
@BeforeTest
|
|
public static void testCaseTwenty() {
|
|
System.out.println("Debug the twentieth case ### BEFORE TEST");
|
|
}
|
|
}
|