rename integration tests

This commit is contained in:
Carsten Otto
2022-05-10 19:29:52 +02:00
committed by Carsten Otto
parent a997110deb
commit 925f28e08c
4 changed files with 4 additions and 6 deletions

View File

@@ -13,13 +13,12 @@ import org.springframework.test.web.servlet.MockMvc;
import static de.cotto.lndmanagej.model.ChannelIdFixtures.CHANNEL_ID;
import static de.cotto.lndmanagej.ui.model.ChannelDetailsDtoFixture.CHANNEL_DETAILS_DTO;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.BDDMockito.given;
import static org.mockito.Mockito.when;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
@WebMvcTest(controllers = ChannelDetailsController.class)
class ChannelDetailsControllerTest {
class ChannelDetailsControllerIT {
@Autowired
private MockMvc mockMvc;

View File

@@ -12,7 +12,6 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
import org.springframework.boot.test.mock.mockito.MockBean;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
import java.util.List;
@@ -23,7 +22,7 @@ import static org.springframework.test.web.servlet.request.MockMvcRequestBuilder
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
@WebMvcTest(controllers = DashboardController.class)
class DashboardControllerTest {
class DashboardControllerIT {
@Autowired
private MockMvc mockMvc;

View File

@@ -17,7 +17,7 @@ import static org.mockito.BDDMockito.given;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
@WebMvcTest(controllers = NodeDetailsController.class)
class NodeDetailsControllerTest {
class NodeDetailsControllerIT {
@Autowired
private MockMvc mockMvc;

View File

@@ -31,7 +31,7 @@ import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.view;
@WebMvcTest(controllers = SearchController.class)
class SearchControllerTest {
class SearchControllerIT {
@Autowired
private MockMvc mockMvc;