-
Notifications
You must be signed in to change notification settings - Fork 0
/
testng.xml
29 lines (29 loc) · 1017 Bytes
/
testng.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
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="softwaretestingmaterial">
<test name="testngTest">
<classes>
<class name="com.mobi.cafe.UITests.LoginPageTest">
<methods>
<include name="wrong_username" />
<include name="empty_password" />
</methods>
</class>
<class name="com.mobi.cafe.UITests.EmployeeListPageTest">
<methods>
<include name="list_employees" />
<include name="open_employee_details_with_double_click" />
<include name="edit_employee_when_edit_button_disabled" />
<include name="delete_employee_when_delete_button_disabled" />
</methods>
</class>
<class name="com.mobi.cafe.UITests.EmployeeAddEditTest">
<methods>
<include name="add_employee" />
<include name="delete_employee_on_edit_page" />
<include name="add_employee_with_long_username" />
<include name="edit_employee_with_invalid_email_address" />
</methods>
</class>
</classes>
</test>
</suite>