mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 20:19:06 +00:00
13 lines
192 B
Groovy
13 lines
192 B
Groovy
@SpringBootTest(classes=ReactorApplication, webEnvironment=WebEnvironment.RANDOM_PORT)
|
|
class RestTests {
|
|
|
|
@Autowired
|
|
EventBus eventBus
|
|
|
|
@Test
|
|
void test() {
|
|
assertNotNull(eventBus)
|
|
}
|
|
|
|
}
|