-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtestng.xml
More file actions
37 lines (32 loc) · 1.04 KB
/
testng.xml
File metadata and controls
37 lines (32 loc) · 1.04 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">
<suite name="Beaker Test Suite" parallel="false">
<listeners>
<listener class-name="com.testmonitor.testng.TestNGReporter"/>
</listeners>
<test name="Landing Page Tests">
<classes>
<class name="com.testmonitor.beaker.tests.LandingPageTest"/>
</classes>
</test>
<test name="Login Flow Tests">
<classes>
<class name="com.testmonitor.beaker.tests.LoginFlowTest"/>
</classes>
</test>
<test name="Password Reset Tests">
<classes>
<class name="com.testmonitor.beaker.tests.PasswordResetTest"/>
</classes>
</test>
<test name="Task Management Tests">
<classes>
<class name="com.testmonitor.beaker.tests.TaskManagementTest"/>
</classes>
</test>
<test name="Logout Flow Tests">
<classes>
<class name="com.testmonitor.beaker.tests.LogoutFlowTest"/>
</classes>
</test>
</suite>