13 lines
136 B
Groovy
13 lines
136 B
Groovy
|
@SpringBootTest(classes=App)
|
||
|
class AppTests {
|
||
|
|
||
|
@Autowired
|
||
|
MyService myService
|
||
|
|
||
|
@Test
|
||
|
void test() {
|
||
|
assertNotNull(myService)
|
||
|
}
|
||
|
|
||
|
}
|