You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
136 B
Groovy
13 lines
136 B
Groovy
8 years ago
|
@SpringBootTest(classes=App)
|
||
|
class AppTests {
|
||
11 years ago
|
|
||
|
@Autowired
|
||
8 years ago
|
MyService myService
|
||
11 years ago
|
|
||
|
@Test
|
||
|
void test() {
|
||
8 years ago
|
assertNotNull(myService)
|
||
11 years ago
|
}
|
||
|
|
||
|
}
|