Skip to content

Commit dfe4135

Browse files
committed
added new testng.xml file for post and get request tests
1 parent 8ffc51f commit dfe4135

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
3+
<suite name="Restful ECommerce Test Suite">
4+
<test name="Testing Happy Path Scenarios of Creating and Updating Orders">
5+
<classes>
6+
<class name="io.github.mfaisalkhatri.api.restfulecommerce.HappyPathTests">
7+
<methods>
8+
<include name="testShouldCreateNewOrders"/>
9+
<include name="testShouldGetAllOrders"/>
10+
</methods>
11+
</class>
12+
</classes>
13+
</test>
14+
</suite>

0 commit comments

Comments
 (0)