-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment206.java
More file actions
49 lines (29 loc) · 760 Bytes
/
Assignment206.java
File metadata and controls
49 lines (29 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package TestNGCLAssignments;
import org.testng.annotations.Test;
//WAP using TestNG grouping concept using include in xml file?
public class Assignment206 {
@Test(groups = { "smoke" })
public void testcase01() {
System.out.println("Testcase01");
}
@Test(groups = { "component" })
public void testcase02() {
System.out.println("testcase02");
}
@Test(groups = { "smoke" })
public void testcase03() {
System.out.println("testcasse03");
}
@Test(groups = "smoke")
public void testcase04() {
System.out.println("testcase04");
}
@Test(groups = { "component" })
public void testcase05() {
System.out.println("testcase05");
}
@Test(groups = { "smoke" })
public void testcase06() {
System.out.println("testcase06");
}
}