1
0
forked from Zakaria/testNG
testNG/src/test/java/zacksolutions/TestHomePage.java
2024-09-22 01:00:36 -04:00

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");
}
}