-
Notifications
You must be signed in to change notification settings - Fork 7
/
testngSuite.xml
113 lines (111 loc) · 3.82 KB
/
testngSuite.xml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">
<suite thread-count="10" name="ExtramarksWebsiteSuite">
<test thread-count="1" name="LoginTest" parallel="methods">
<classes>
<class name="com.ExtramarksWebsite_TestCases.LoginTest" />
</classes>
</test> <!-- LoginTest -->
<test thread-count="1" name="SignUpTest" parallel="methods">
<classes>
<class name="com.ExtramarksWebsite_TestCases.SignUpTest" />
</classes>
</test> <!-- ExtramarksWebsiteSign Up -->
<test thread-count="2" name="StudentDashboardTest"
parallel="methods">
<classes>
<class
name="com.ExtramarksWebsite_TestCases.StudentDashboardTest" />
</classes>
</test> <!-- ExtramarksWebsiteStudentDashboard Test -->
<test thread-count="2" name="StudentReportTest" parallel="methods">
<classes>
<class name="com.ExtramarksWebsite_TestCases.StudentReportTest" />
</classes>
</test> <!-- ExtramarksWebsiteStudent ReportTest -->
<test thread-count="1" name="StudentScheduleTest"
parallel="methods">
<classes>
<class
name="com.ExtramarksWebsite_TestCases.StudentScheduleTest" />
</classes>
</test> <!-- StudentScheduleTest -->
<test thread-count="1" name="StudentAssessmentTest"
parallel="methods">
<classes>
<class
name="com.ExtramarksWebsite_TestCases.StudentAssessmentTest" />
</classes>
</test> <!-- StudentAssessmentTest -->
<test thread-count="2" name="StudentMentorTest" parallel="methods">
<classes>
<class name="com.ExtramarksWebsite_TestCases.StudentMentorTest" />
</classes>
</test> <!-- StudentMentorTest -->
<test thread-count="2" name="StudentNotesTest" parallel="methods">
<classes>
<class name="com.ExtramarksWebsite_TestCases.StudentNotesTest" />
</classes>
</test> <!-- StudentNotesTest -->
<test thread-count="2" name="ParentDashboardTest"
parallel="methods">
<classes>
<class
name="com.ExtramarksWebsite_TestCases.ParentDashboardTest" />
</classes>
</test> <!-- ParentDashboardTest -->
<test thread-count="2" name="ParentMyChildTest" parallel="methods">
<classes>
<class name="com.ExtramarksWebsite_TestCases.ParentMyChildTest" />
</classes>
</test> <!-- ParentMyChildTest -->
<test thread-count="2" name="ParentChildSubscriptionTest"
parallel="methods">
<classes>
<class
name="com.ExtramarksWebsite_TestCases.ParentChildSubscriptionTest" />
</classes>
</test> <!-- ParentChildSubscriptionTest -->
<test thread-count="2" name="MentorDashboardTest"
parallel="methods">
<classes>
<class
name="com.ExtramarksWebsite_TestCases.MentorDashboardTest" />
</classes>
</test> <!-- MentorDashboardTest -->
<test thread-count="2" name="NotificationTest" parallel="methods">
<classes>
<class name="com.ExtramarksWebsite_TestCases.NotificationTest" />
</classes>
</test> <!-- NotificationTest -->
<test thread-count="10" name="MentorStudentTest"
parallel="methods">
<classes>
<class name="com.ExtramarksWebsite_TestCases.MentorStudentTest" />
</classes>
</test> <!-- ExtramarksWebsiteTest -->
<test thread-count="2" name="MentorAssessmentTest"
parallel="methods">
<classes>
<class
name="com.ExtramarksWebsite_TestCases.MentorAssessmentTest" />
</classes>
</test> <!-- MentorAssessmentTest -->
<test thread-count="2" name="BuyPackageTest" parallel="methods">
<classes>
<class name="com.ExtramarksWebsite_TestCases.BuyPackageTest" />
</classes>
</test> <!-- BuyPackageTest -->
<test thread-count="2" name="SettingTest" parallel="methods">
<classes>
<class name="com.ExtramarksWebsite_TestCases.SettingTest" />
</classes>
</test> <!-- ExtramarksWebsiteTest -->
<test thread-count="1" name="ForgotPasswordTest"
parallel="methods">
<classes>
<class
name="com.ExtramarksWebsite_TestCases.ForgotPasswordTest" />
</classes>
</test> <!-- ForgotPasswordTest -->
</suite> <!-- ExtramarksWebsiteSuite -->