我正在使用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进行注释
任何帮助?