REST Assured is a Java DSL (Domain Specific Langauge) that aims to simplify testing REST APIs. It follows a BDD (Behavior Driven
As soon as you scale out your Spring Boot application (run with multiple instances) to e.g. increase throughput or availability, you have
MongoDB is one of the NoSQL databases that Spring Boot offers great testing support for. Like all other test slice annotations from
As a general best practice, we should externalize configuration values for our applications. This allows overriding them per stage and e.g. connect
When working for the first time with Spring, you might encounter several no qualifying bean exceptions when you try to start your
Similar to testing our web layer in isolation with @WebMvcTest, Spring Boot provides a convenient way to test our Spring Boot JPA
Starting with Spring Framework version 5.3 (part of Spring Boot since version 2.4.0) you can perform requests with the WebTestClient against MockMvc.
When you start testing your Spring Boot application sooner or later you'll stumble over @Mock and @MockBean. Both annotations create mock objects
Did you ever found yourself saying: I usually ignore testing my Spring Web MVC controller endpoints because the security setup is tricky.
Spring Boot offers great support to test different slices (web, database, etc.) of your application. This allows you to write tests for