-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmoke.xml
More file actions
30 lines (27 loc) · 1.03 KB
/
Copy pathsmoke.xml
File metadata and controls
30 lines (27 loc) · 1.03 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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">
<!-- Fast smoke suite: the few highest-value happy-path checks. -->
<!-- Run with: mvn clean test -Dsuite=smoke.xml -->
<suite name="SauceDemo Smoke" verbose="1">
<!-- Listeners auto-registered via TestNG ServiceLoader (see
src/test/resources/META-INF/services/org.testng.ITestNGListener). -->
<test name="Smoke">
<classes>
<class name="com.saucedemo.tests.LoginTest">
<methods>
<include name="standardUserCanLogIn"/>
</methods>
</class>
<class name="com.saucedemo.tests.CartTest">
<methods>
<include name="addSingleItem"/>
</methods>
</class>
<class name="com.saucedemo.tests.CheckoutTest">
<methods>
<include name="successfulCheckout"/>
</methods>
</class>
</classes>
</test>
</suite>