minor clean up

This commit is contained in:
DOHA 2019-01-02 23:16:14 +02:00
parent e0a063a932
commit 2ec62d9091
3 changed files with 3 additions and 45 deletions

View File

@ -109,53 +109,11 @@
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*IntegrationTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins> </plugins>
</build> </build>
<profiles>
<profile>
<id>integration</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<includes>
<include>**/*IntegrationTest.java</include>
</includes>
</configuration>
</execution>
</executions>
<configuration>
<systemPropertyVariables>
<test.mime>json</test.mime>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<properties> <properties>
<!-- The main class to start by executing java -jar --> <!-- The main class to start by executing java -jar -->
<start-class>com.baeldung.boot.Application</start-class> <start-class>com.baeldung.boot.Application</start-class>

View File

@ -10,7 +10,7 @@ import spock.lang.Title
@Title("Application Specification") @Title("Application Specification")
@Narrative("Specification which beans are expected") @Narrative("Specification which beans are expected")
@SpringBootTest @SpringBootTest
class LoadContextIntegrationTest extends Specification { class LoadContextTest extends Specification {
@Autowired(required = false) @Autowired(required = false)
private WebController webController private WebController webController

View File

@ -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'") @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) @AutoConfigureMockMvc(secure=false)
@WebMvcTest() @WebMvcTest()
class WebControllerIntegrationTest extends Specification { class WebControllerTest extends Specification {
@Autowired @Autowired
private MockMvc mvc private MockMvc mvc