February 2018
Intermediate to advanced
406 pages
9h 55m
English
Spring Boot Test extends and simplifies the Spring-test module provided by the Spring Framework. Let's look at the essential elements to write our acceptance tests and then we can revisit the details later in the chapter:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
As you may have noticed, the scope is changed to test. This means that the dependency we are defining is not required for normal runtime, only for compilation ...
Read now
Unlock full access