spring-boot/spring-boot-project/spring-boot-cli/test-samples/integration_auto_test.groovy

13 lines
136 B
Groovy
Raw Normal View History

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