-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe7732d
commit 9257489
Showing
2 changed files
with
23 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> | ||
<suite name="Restful ECommerce Test Suite"> | ||
<test name="Testing Happy Path Scenarios of Creating and Updating Orders"> | ||
<classes> | ||
<class name="io.github.mfaisalkhatri.api.restfulecommerce.HappyPathTests"> | ||
<methods> | ||
<include name="testShouldCreateNewOrders"/> | ||
<include name="testShouldUpdateTheOrderUsingPut"/> | ||
</methods> | ||
</class> | ||
</classes> | ||
</test> | ||
<test name="Testing Sad Path Scenarios of Updating Order"> | ||
<classes> | ||
<class name="io.github.mfaisalkhatri.api.restfulecommerce.SadPathTests"> | ||
<methods> | ||
<include name="testShouldNotUpdateOrder_WhenOrderIdIsNotFound"/> | ||
</methods> | ||
</class> | ||
</classes> | ||
</test> | ||
</suite> |