-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestng.xml
More file actions
31 lines (26 loc) · 767 Bytes
/
Copy pathtestng.xml
File metadata and controls
31 lines (26 loc) · 767 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
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd" >
<suite name="Suite1" verbose="1" >
<parameter name="firstname" value="Benjamin"/>
<parameter name="lastname" value="Wang" />
<test name="CheckinTest">
<groups>
<run>
<include name="checkintest"/>
<exclude name="broken"></exclude>
</run>
</groups>
<packages>
<package name="com.example"/>
</packages>
</test>
<test name="FunctionTest">
<groups>
<run>
<include name="functest"/>
</run>
</groups>
<packages>
<package name="com.example"/>
</packages>
</test>
</suite>