diff --git a/spring-boot-testing/pom.xml b/spring-boot-testing/pom.xml
index dd407896045f..c2c886a4feb0 100644
--- a/spring-boot-testing/pom.xml
+++ b/spring-boot-testing/pom.xml
@@ -109,53 +109,11 @@
-
-
- org.apache.maven.plugins
- maven-surefire-plugin
-
-
- **/*IntegrationTest.java
-
-
-
-
+
-
-
- integration
-
-
-
- org.apache.maven.plugins
- maven-surefire-plugin
-
-
- integration-test
-
- test
-
-
-
- **/*IntegrationTest.java
-
-
-
-
-
-
- json
-
-
-
-
-
-
-
-
com.baeldung.boot.Application
diff --git a/spring-boot-testing/src/test/groovy/com/baeldung/boot/LoadContextIntegrationTest.groovy b/spring-boot-testing/src/test/groovy/com/baeldung/boot/LoadContextTest.groovy
similarity index 91%
rename from spring-boot-testing/src/test/groovy/com/baeldung/boot/LoadContextIntegrationTest.groovy
rename to spring-boot-testing/src/test/groovy/com/baeldung/boot/LoadContextTest.groovy
index 8bfc86685c6a..85b0a4b89b4d 100644
--- a/spring-boot-testing/src/test/groovy/com/baeldung/boot/LoadContextIntegrationTest.groovy
+++ b/spring-boot-testing/src/test/groovy/com/baeldung/boot/LoadContextTest.groovy
@@ -10,7 +10,7 @@ import spock.lang.Title
@Title("Application Specification")
@Narrative("Specification which beans are expected")
@SpringBootTest
-class LoadContextIntegrationTest extends Specification {
+class LoadContextTest extends Specification {
@Autowired(required = false)
private WebController webController
diff --git a/spring-boot-testing/src/test/groovy/com/baeldung/boot/WebControllerIntegrationTest.groovy b/spring-boot-testing/src/test/groovy/com/baeldung/boot/WebControllerTest.groovy
similarity index 97%
rename from spring-boot-testing/src/test/groovy/com/baeldung/boot/WebControllerIntegrationTest.groovy
rename to spring-boot-testing/src/test/groovy/com/baeldung/boot/WebControllerTest.groovy
index 17c60376edc5..d8b4e03adcfe 100644
--- a/spring-boot-testing/src/test/groovy/com/baeldung/boot/WebControllerIntegrationTest.groovy
+++ b/spring-boot-testing/src/test/groovy/com/baeldung/boot/WebControllerTest.groovy
@@ -14,7 +14,7 @@ import spock.lang.Title
@Narrative("The Specification of the behaviour of the WebController. It can greet a person, change the name and reset it to 'world'")
@AutoConfigureMockMvc(secure=false)
@WebMvcTest()
-class WebControllerIntegrationTest extends Specification {
+class WebControllerTest extends Specification {
@Autowired
private MockMvc mvc