14 lines
196 B
Groovy
14 lines
196 B
Groovy
|
@SpringApplicationConfiguration(classes=ReactorApplication)
|
||
|
@IntegrationTest('server.port:0')
|
||
|
class RestTests {
|
||
|
|
||
|
@Autowired
|
||
|
Reactor reactor
|
||
|
|
||
|
@Test
|
||
|
void test() {
|
||
|
assertNotNull(reactor)
|
||
|
}
|
||
|
|
||
|
}
|