forked from ivdunin/selenium-java-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestng.xml
More file actions
34 lines (34 loc) · 1.09 KB
/
Copy pathtestng.xml
File metadata and controls
34 lines (34 loc) · 1.09 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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Company Test Suite" verbose="1" >
<test name="Login Test">
<classes>
<class name="com.company.selenium.test.testng.tests.LoginTest" />
</classes>
</test>
<test name="Create Account Test">
<classes>
<class name="com.company.selenium.test.testng.tests.CreateAccountTest" />
</classes>
</test>
<test name="Patient Smoke Test">
<classes>
<class name="com.company.selenium.test.testng.tests.PatientSmokeTest" />
</classes>
</test>
<test name="Initial Consult Appointments">
<classes>
<class name="com.company.selenium.test.testng.tests.InitialConsultAppointments" />
</classes>
</test>
<test name="Procedure Treatments Appointments">
<classes>
<class name="com.company.selenium.test.testng.tests.ProcedureTreatmentsAppointments" />
</classes>
</test>
<test name="Follow Up Appointments">
<classes>
<class name="com.company.selenium.test.testng.tests.FollowUpAppointments" />
</classes>
</test>
</suite>