This commit is contained in:
2024-09-22 16:48:44 -04:00
parent 1b5be610af
commit 5e08f69e84
6 changed files with 117 additions and 80 deletions
@@ -3,27 +3,28 @@ package zacksolutions;
import org.testng.annotations.Test;
public class TestNGDiffClass {
@Test
public void testCaseSix(){
System.out.println("Debug the sixteenth case");
}
@Test
public static void testCaseSeven() {
System.out.println("Debug the seventh case");
}
@Test
public void testCaseSix() {
System.out.println("Debug the sixteenth case");
}
@Test
public static void testCaseEight() {
System.out.println("Debug the eighth case");
}
@Test
public static void testCaseSeven() {
System.out.println("Debug the seventh case");
}
@Test
public static void testCaseNine() {
System.out.println("Debug the ninth case");
}
@Test
public static void testCaseEight() {
System.out.println("Debug the eighth case");
}
@Test
public static void testCaseTen() {
System.out.println("Debug the tenth case");
}
@Test
public static void testCaseNine() {
System.out.println("Debug the ninth case");
}
@Test(groups = { "Smoke" })
public static void testCaseTen() {
System.out.println("Debug the tenth case");
}
}