mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-20 22:59:01 +00:00
Artemis seems to be a bit flakey which is causing sporadic build failures, for example due to an NPE in Artemis' code.
13 lines
136 B
Groovy
13 lines
136 B
Groovy
@SpringBootTest(classes=App)
|
|
class AppTests {
|
|
|
|
@Autowired
|
|
MyService myService
|
|
|
|
@Test
|
|
void test() {
|
|
assertNotNull(myService)
|
|
}
|
|
|
|
}
|