day 8: Chaining and TestNG

This commit is contained in:
Sami 2024-10-15 04:47:43 -04:00
parent 20ea80437b
commit 40137d11a8
2 changed files with 11 additions and 13 deletions

View File

@ -0,0 +1,11 @@
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd" >
<suite name="AuthenticationTests">
<test name="AuthenticationTestSuite">
<classes>
<class name="zacksolutions.DayEight.CreateUserTest"/>
<class name="zacksolutions.DayEight.GetUserTest"/>
<class name="zacksolutions.DayEight.UpdateUserTest"/>
<class name="zacksolutions.DayEight.DeleteUserTest"/>
</classes>
</test>
</suite>

View File

@ -1,13 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="All Test Suite" >
<test name="RestAssured">
<classes>
<class name="zacksolutions.DayOne.HttpRequestTest"/>
<class name="zacksolutions.DayTwo.PostReqBodyTest"/>
<class name="zacksolutions.DayThree.CookiesDemoTest"/>
<class name="zacksolutions.DayThree.PathandQuerryParTest"/>
</classes>
</test>
</suite>