@Test
public void beansShouldBeReturnedInTheRegisteredOrderOfTheModules() {
AcrossContext context = new AcrossContext();
context.addModule( new ModuleOne() );
context.addModule( new ModuleTwo() );
context.addModule( new ModuleThree() );
context.bootstrap();
AcrossContextBeanRegistry registry = AcrossContextUtils.getBeanRegistry( context );
List<MyBeanConfig> beans = registry.getBeansOfType( MyBeanConfig.class );
assertTrue( beans.isEmpty() );