Given that Spring Boot uses java config accross the board, a new `value`
attribute is now aliased to the existing `classes` attribute such that
one could write the following:
@SpringApplicationConfiguration(MyConfig.class)
public class MyTest {}
Closes gh-3635
14 lines
191 B
Groovy
14 lines
191 B
Groovy
@SpringApplicationConfiguration(ReactorApplication)
|
|
@IntegrationTest('server.port:0')
|
|
class RestTests {
|
|
|
|
@Autowired
|
|
EventBus eventBus
|
|
|
|
@Test
|
|
void test() {
|
|
assertNotNull(eventBus)
|
|
}
|
|
|
|
}
|