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