-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestng.xml
More file actions
34 lines (29 loc) · 919 Bytes
/
testng.xml
File metadata and controls
34 lines (29 loc) · 919 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
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Test Scenarios" thread-count="4" parallel="tests"
data-provider-thread-count="1">
<test name="Chrome 1 TestRegistration">
<parameter name="browser" value="chrome" />
<classes>
<class name="tests.Registration" />
</classes>
</test> <!-- Test -->
<test name="Chrome 2 TestTeaser">
<parameter name="browser" value="chrome" />
<classes>
<class name="tests.Teaser" />
</classes>
</test> <!-- Test -->
<test name="Firefox 1 TestRegistration">
<parameter name="browser" value="firefox" />
<classes>
<class name="tests.Registration" />
</classes>
</test> <!-- Test -->
<test name="Firefox 2 TestTeaser">
<parameter name="browser" value="firefox" />
<classes>
<class name="tests.Teaser" />
</classes>
</test> <!-- Test -->
</suite> <!-- Suite -->