mica-boot-test 测试组件

介绍

由于在 mica-launcher 组件中我们埋入了一些配置,该组件为了方便单元测试。

依赖坐标

Maven

  1. <dependency>
  2. <groupId>net.dreamlu</groupId>
  3. <artifactId>mica-boot-test</artifactId>
  4. <scope>test</scope>
  5. </dependency>

Gradle

  1. testCompile "net.dreamlu:mica-boot-test"

使用

示例代码一

采用 @RunWith(MicaSpringRunner.class)

  1. @SpringBootTest
  2. @MicaBootTest("appName")
  3. @RunWith(MicaSpringRunner.class)
  4. public class MicaExampleApplicationTests {
  5. @Test
  6. public void contextLoads() {
  7. }
  8. }

示例代码二

继承 MicaBaseTest

  1. @SpringBootTest
  2. @MicaBootTest("appName")
  3. public class ApplicationTests extends MicaBaseTest {
  4. @Test
  5. public void contextLoads() {
  6. }
  7. }

说明:上面2种方式均可,@MicaBootTest 注解属性有:服务名、profileenableLoader

开源推荐

关注我们

如梦技术-公众号.jpg

扫描上面二维码,更多精彩内容每天推荐!