spring boot test不扫描子包

时间:2016-10-03 20:01:43

标签: java spring junit spring-boot

我正在使用spring(boot,data,test ...)进行编码,我正在使用TDD,我的测试在src / test / java里面的特定包里就像我的普通类一样。当我运行测试时,Spring不会在子包内执行我的JUnit测试。例如:ApplicationTests运行没有任何问题,但JUnitTest没有。我该怎么办?我开始使用Spring,我不知道该怎么做。包装组织如下:

com
+- example
    +- myproject
        +- ApplicationTests.java
        |
        +- domain
        |   +- JUnitTest.java

ApplicationTests使用@RunWith(SpringRunner.class)和@SpringBootTest进行注释

任何帮助?

0 个答案:

没有答案