Files
spring-boot/spring-boot-cli/test-samples/integration_auto_test.groovy
Andy Wilkinson becf225911 Simplify CLI integration auto-config test by removing use of Artemis
Artemis seems to be a bit flakey which is causing sporadic build
failures, for example due to an NPE in Artemis' code.
2016-11-04 20:58:14 +00:00

13 lines
136 B
Groovy

@SpringBootTest(classes=App)
class AppTests {
@Autowired
MyService myService
@Test
void test() {
assertNotNull(myService)
}
}