* BAEL-8020 Fix surefire configs of spring-5 projects -Removed surefire configurations from spring-5 projects * BAEL-8020 Fix surefire configs of spring-5 projects -Fixed surefire and junit configuration of spring-5-** projects -Fixed mavensurefire plugin to execute JUnit5 tests BAEL-8125 * BAEL-8020 Fix sure fire configs in spring5 project -Fixed dependency for junit-5 * BAEL-8020 Fix sure fire configs in spring5 project -Fixed dependency for junit5-migration * BAEL-8020 Fix surefire configs -Updated maven war plugin to 3.0.0 * BAEL-8020 Fix surefire configs -Upgraded surefire custom logger api version to 2.21.0 for all child projects * BAEL-8020 -Deleted empty test SpringBootMvcApplicationTests.java in spring-boot-mvc. -Renamed SpringBootMvcApplicationTests.java correct in spring-boot-vue * BAEL-8020 Fix surfire configs -Added junit vintage dependency to run junit4 tests
36 lines
1.2 KiB
Java
36 lines
1.2 KiB
Java
package com.baeldung.springbootmvc;
|
|
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
import org.springframework.test.context.junit4.SpringRunner;
|
|
import org.springframework.test.web.servlet.MockMvc;
|
|
import org.springframework.test.web.servlet.result.MockMvcResultMatchers;
|
|
|
|
import static org.hamcrest.CoreMatchers.containsString;
|
|
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
|
|
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
|
|
|
|
@RunWith(SpringRunner.class)
|
|
@SpringBootTest
|
|
@AutoConfigureMockMvc
|
|
public class SpringBootMvcApplicationUnitTest {
|
|
|
|
@Autowired
|
|
private MockMvc mockMvc;
|
|
|
|
/**
|
|
* If this test passes, we got a page with the thymeleaf provided variable
|
|
* value for eventName
|
|
*/
|
|
@Test
|
|
public void shouldLoadCorrectIndexPage() throws Exception {
|
|
mockMvc.perform(get("/")).andExpect(status().isOk()).
|
|
andExpect(MockMvcResultMatchers.content()
|
|
.string(containsString("FIFA 2018")));
|
|
}
|
|
|
|
}
|