2015-07-31 21:15:27 +08:00
|
|
|
@SpringApplicationConfiguration(ReactorApplication)
|
2014-05-28 19:11:48 +08:00
|
|
|
@IntegrationTest('server.port:0')
|
|
|
|
class RestTests {
|
|
|
|
|
|
|
|
@Autowired
|
2015-04-27 20:47:42 +08:00
|
|
|
EventBus eventBus
|
2014-05-28 19:11:48 +08:00
|
|
|
|
|
|
|
@Test
|
|
|
|
void test() {
|
2015-04-27 20:47:42 +08:00
|
|
|
assertNotNull(eventBus)
|
2014-05-28 19:11:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|