├── .classpath ├── .gitignore ├── .project ├── .settings ├── org.eclipse.core.resources.prefs ├── org.eclipse.jdt.core.prefs └── org.eclipse.m2e.core.prefs ├── pom.xml ├── src ├── main │ └── java │ │ └── com │ │ └── qa │ │ ├── base │ │ └── TestBase.java │ │ ├── client │ │ └── RestClient.java │ │ ├── config │ │ └── config.properties │ │ ├── data │ │ ├── Users.java │ │ └── users.json │ │ └── util │ │ ├── TestUtil.java │ │ └── Users.java └── test │ └── java │ └── com │ └── qa │ └── tests │ ├── GetAPITest.java │ └── PostAPITest.java ├── target ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── org.com.restapitest │ │ │ └── restapi │ │ │ ├── pom.properties │ │ │ └── pom.xml │ └── com │ │ └── qa │ │ ├── base │ │ └── TestBase.class │ │ ├── client │ │ └── RestClient.class │ │ ├── config │ │ └── config.properties │ │ └── util │ │ └── TestUtil.class └── test-classes │ └── com │ └── qa │ └── tests │ └── GetAPITest.class └── test-output ├── Default suite ├── Default test.html ├── Default test.xml └── testng-failed.xml ├── bullet_point.png ├── collapseall.gif ├── emailable-report.html ├── failed.png ├── index.html ├── jquery-1.7.1.min.js ├── junitreports ├── TEST-com.qa.tests.GetAPITest.xml ├── TEST-com.qa.tests.PostAPITest.xml └── TEST-com.qa.tests.posttest.xml ├── navigator-bullet.png ├── old ├── Default suite │ ├── Default test.properties │ ├── classes.html │ ├── groups.html │ ├── index.html │ ├── main.html │ ├── methods-alphabetical.html │ ├── methods-not-run.html │ ├── methods.html │ ├── reporter-output.html │ ├── testng.xml.html │ └── toc.html └── index.html ├── passed.png ├── skipped.png ├── testng-failed.xml ├── testng-reports.css ├── testng-reports.js ├── testng-results.xml └── testng.css /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/qa/base/TestBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/src/main/java/com/qa/base/TestBase.java -------------------------------------------------------------------------------- /src/main/java/com/qa/client/RestClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/src/main/java/com/qa/client/RestClient.java -------------------------------------------------------------------------------- /src/main/java/com/qa/config/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/src/main/java/com/qa/config/config.properties -------------------------------------------------------------------------------- /src/main/java/com/qa/data/Users.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/src/main/java/com/qa/data/Users.java -------------------------------------------------------------------------------- /src/main/java/com/qa/data/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/src/main/java/com/qa/data/users.json -------------------------------------------------------------------------------- /src/main/java/com/qa/util/TestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/src/main/java/com/qa/util/TestUtil.java -------------------------------------------------------------------------------- /src/main/java/com/qa/util/Users.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/src/main/java/com/qa/util/Users.java -------------------------------------------------------------------------------- /src/test/java/com/qa/tests/GetAPITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/src/test/java/com/qa/tests/GetAPITest.java -------------------------------------------------------------------------------- /src/test/java/com/qa/tests/PostAPITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/src/test/java/com/qa/tests/PostAPITest.java -------------------------------------------------------------------------------- /target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/target/classes/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /target/classes/META-INF/maven/org.com.restapitest/restapi/pom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/target/classes/META-INF/maven/org.com.restapitest/restapi/pom.properties -------------------------------------------------------------------------------- /target/classes/META-INF/maven/org.com.restapitest/restapi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/target/classes/META-INF/maven/org.com.restapitest/restapi/pom.xml -------------------------------------------------------------------------------- /target/classes/com/qa/base/TestBase.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/target/classes/com/qa/base/TestBase.class -------------------------------------------------------------------------------- /target/classes/com/qa/client/RestClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/target/classes/com/qa/client/RestClient.class -------------------------------------------------------------------------------- /target/classes/com/qa/config/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/target/classes/com/qa/config/config.properties -------------------------------------------------------------------------------- /target/classes/com/qa/util/TestUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/target/classes/com/qa/util/TestUtil.class -------------------------------------------------------------------------------- /target/test-classes/com/qa/tests/GetAPITest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/target/test-classes/com/qa/tests/GetAPITest.class -------------------------------------------------------------------------------- /test-output/Default suite/Default test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/Default suite/Default test.html -------------------------------------------------------------------------------- /test-output/Default suite/Default test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/Default suite/Default test.xml -------------------------------------------------------------------------------- /test-output/Default suite/testng-failed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/Default suite/testng-failed.xml -------------------------------------------------------------------------------- /test-output/bullet_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/bullet_point.png -------------------------------------------------------------------------------- /test-output/collapseall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/collapseall.gif -------------------------------------------------------------------------------- /test-output/emailable-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/emailable-report.html -------------------------------------------------------------------------------- /test-output/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/failed.png -------------------------------------------------------------------------------- /test-output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/index.html -------------------------------------------------------------------------------- /test-output/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /test-output/junitreports/TEST-com.qa.tests.GetAPITest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/junitreports/TEST-com.qa.tests.GetAPITest.xml -------------------------------------------------------------------------------- /test-output/junitreports/TEST-com.qa.tests.PostAPITest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/junitreports/TEST-com.qa.tests.PostAPITest.xml -------------------------------------------------------------------------------- /test-output/junitreports/TEST-com.qa.tests.posttest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/junitreports/TEST-com.qa.tests.posttest.xml -------------------------------------------------------------------------------- /test-output/navigator-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/navigator-bullet.png -------------------------------------------------------------------------------- /test-output/old/Default suite/Default test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/old/Default suite/Default test.properties -------------------------------------------------------------------------------- /test-output/old/Default suite/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/old/Default suite/classes.html -------------------------------------------------------------------------------- /test-output/old/Default suite/groups.html: -------------------------------------------------------------------------------- 1 |

Groups used for this test run

-------------------------------------------------------------------------------- /test-output/old/Default suite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/old/Default suite/index.html -------------------------------------------------------------------------------- /test-output/old/Default suite/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/old/Default suite/main.html -------------------------------------------------------------------------------- /test-output/old/Default suite/methods-alphabetical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/old/Default suite/methods-alphabetical.html -------------------------------------------------------------------------------- /test-output/old/Default suite/methods-not-run.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/old/Default suite/methods-not-run.html -------------------------------------------------------------------------------- /test-output/old/Default suite/methods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/old/Default suite/methods.html -------------------------------------------------------------------------------- /test-output/old/Default suite/reporter-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/old/Default suite/reporter-output.html -------------------------------------------------------------------------------- /test-output/old/Default suite/testng.xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/old/Default suite/testng.xml.html -------------------------------------------------------------------------------- /test-output/old/Default suite/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/old/Default suite/toc.html -------------------------------------------------------------------------------- /test-output/old/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/old/index.html -------------------------------------------------------------------------------- /test-output/passed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/passed.png -------------------------------------------------------------------------------- /test-output/skipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/skipped.png -------------------------------------------------------------------------------- /test-output/testng-failed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/testng-failed.xml -------------------------------------------------------------------------------- /test-output/testng-reports.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/testng-reports.css -------------------------------------------------------------------------------- /test-output/testng-reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/testng-reports.js -------------------------------------------------------------------------------- /test-output/testng-results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/testng-results.xml -------------------------------------------------------------------------------- /test-output/testng.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naveenanimation20/APIAutomationUsingHTTPClient/HEAD/test-output/testng.css --------------------------------------------------------------------------------