Bael 5374 (#4298)
* Added parent module on poms that have no parent defined * Removed dependency reduced pom from undertow module * [BAEL-5374] - Fix test names * [BAEL-5374] - Fix test names * [BAEL-5374] - Fix test names
This commit is contained in:
parent
c2590b9d7e
commit
73935e65f2
@ -18,7 +18,7 @@ import org.springframework.web.context.WebApplicationContext;
|
|||||||
@RunWith(SpringJUnit4ClassRunner.class)
|
@RunWith(SpringJUnit4ClassRunner.class)
|
||||||
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.MOCK, classes = Application.class)
|
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.MOCK, classes = Application.class)
|
||||||
@AutoConfigureMockMvc
|
@AutoConfigureMockMvc
|
||||||
public class ShutdownApplicationTest {
|
public class ShutdownApplicationIntegrationTest {
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private MockMvc mockMvc;
|
private MockMvc mockMvc;
|
@ -22,7 +22,7 @@ import com.baeldung.spring.data.keyvalue.vo.Employee;
|
|||||||
@RunWith(SpringJUnit4ClassRunner.class)
|
@RunWith(SpringJUnit4ClassRunner.class)
|
||||||
@SpringBootTest(classes = SpringDataKeyValueApplication.class)
|
@SpringBootTest(classes = SpringDataKeyValueApplication.class)
|
||||||
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
|
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
|
||||||
public class EmployeeServicesWithKeyValueTemplateTest {
|
public class EmployeeServicesWithKeyValueRepositoryIntegrationTest {
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
@Qualifier("employeeServicesWithKeyValueTemplate")
|
@Qualifier("employeeServicesWithKeyValueTemplate")
|
@ -22,7 +22,7 @@ import com.baeldung.spring.data.keyvalue.vo.Employee;
|
|||||||
@RunWith(SpringJUnit4ClassRunner.class)
|
@RunWith(SpringJUnit4ClassRunner.class)
|
||||||
@SpringBootTest(classes = SpringDataKeyValueApplication.class)
|
@SpringBootTest(classes = SpringDataKeyValueApplication.class)
|
||||||
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
|
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
|
||||||
public class EmployeeServicesWithRepositoryTest {
|
public class EmployeeServicesWithRepositoryIntegrationTest {
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
@Qualifier("employeeServicesWithRepository")
|
@Qualifier("employeeServicesWithRepository")
|
@ -12,7 +12,7 @@ import static com.github.tomakehurst.wiremock.client.WireMock.aResponse;
|
|||||||
|
|
||||||
@RunWith(Karate.class)
|
@RunWith(Karate.class)
|
||||||
@CucumberOptions(features = "classpath:karate")
|
@CucumberOptions(features = "classpath:karate")
|
||||||
public class KarateUnitTest {
|
public class KarateIntegrationTest {
|
||||||
|
|
||||||
private static final WireMockServer wireMockServer = new WireMockServer();
|
private static final WireMockServer wireMockServer = new WireMockServer();
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user