MCPcopy Create free account
hub / github.com/527515025/springBoot / BaseTest

Class BaseTest

springboot-mybatis2/src/test/java/cn/abel/BaseTest.java:16–32  ·  view source on GitHub ↗

@author yyb @time 2019/3/27

Source from the content-addressed store, hash-verified

14 * @time 2019/3/27
15 */
16@RunWith(SpringRunner.class)
17@SpringBootTest(classes = Application.class)
18@TestPropertySource("/application.properties")
19public class BaseTest {
20
21 @Configuration
22 @ComponentScan(basePackages = {"cn.abel"}, excludeFilters = @ComponentScan.Filter(type = FilterType.ANNOTATION, value = Configuration.class))
23 static class ComponentScanConfig {
24
25 }
26
27
28 @Test
29 public void contextLoads() {
30 }
31
32}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected