For those of you looking to gain some experience working with REST Assured.
A Java 8 JDK and Gradle. That's it.
All API calls that are used in the examples and exercises have been mocked using WireMock. The standalone version of WireMock is included in this project, so there's no need for additional setup.
In order to get a response from the WireMock mock server, you'll need to start it before you run your tests. You can do so by running this command from the src/test/resources
folder:
java -jar wiremock-standalone-2.15.0.jar --port 9876
In our execrcises, you have complete the test practice due to the comments in test files.
Tips You can search the url which should be tested by IDE global search, it will be found in files of Resource folder.