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)
|
|
}
|
|
|
|
}
|