Configuration Rest Assured API Testing - IrfanBehsoodi/RESTAssuredAPITesting GitHub Wiki

TestNG Installation

Help - Install New Software URL - http://dl.bintray.com/testng-team/testng-eclipse-release/

Maven Installation Help - Install New Software URL - http://download.eclipse.org/technology/m2e/releases/

Maven Dependencies - pom.xml From Site - Maven Central Repositories

<!-- https://mvnrepository.com/artifact/org.testng/testng -->	
	<dependency>
	    <groupId>org.testng</groupId>
	    <artifactId>testng</artifactId>
	    <version>7.1.0</version>
	    <scope>test</scope>
	</dependency>
			<!-- https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple -->
	<dependency>
	    <groupId>com.googlecode.json-simple</groupId>
	    <artifactId>json-simple</artifactId>
	    <version>1.1.1</version>
	</dependency>
			<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
	<dependency>
	    <groupId>org.apache.poi</groupId>
	    <artifactId>poi-ooxml</artifactId>
	    <version>4.1.2</version>
	</dependency>	
⚠️ **GitHub.com Fallback** ⚠️