From the course: Java: Automated API Testing with REST Assured (2021)

Unlock this course with a free trial

Join today to access over 25,500 courses taught by industry experts.

REST Assured testing library

REST Assured testing library

- [Instructor] REST-assured is an open source Java library that makes it easy to write automated API tests. We'll use this library to not only make API requests, but to also verify the responses. Let's set up our project. In this course, I'm using the open source community version of the IntelliJ editor. However, you're welcome to use the editor of your choice. If you're using IntelliJ, select your operating system, and then click the download button under the community version of IntelliJ. After installing IntelliJ, open the application. We're going to create a new project by clicking New Project, and then choosing the Maven option. Click Next, and then we're going to give our project a name. You can name this whatever you'd like. I'm going to call mine API-testing. And then click Finish. Within the project, this POM.XML file was automatically generated for us. And this is where we can specify which dependencies we need.…

Contents