Skip to content

Instantly share code, notes, and snippets.

@amaralrfl
Last active July 29, 2018 01:30
Show Gist options
  • Save amaralrfl/a9ef45fc9ac5faa2d1dd897f96bd9771 to your computer and use it in GitHub Desktop.
Save amaralrfl/a9ef45fc9ac5faa2d1dd897f96bd9771 to your computer and use it in GitHub Desktop.
Rest Assured Tutorial
<dependencies>
<!-- https://mvnrepository.com/artifact/io.rest-assured/rest-assured -->
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>3.1.0</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.testng/testng -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.14.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>json-path</artifactId>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>json-schema-validator</artifactId>
<version>3.1.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment