use of org.apache.xbean.spring.example.ContainerBean in project geronimo-xbean by apache.
the class ComponentTest method test.
protected void test(String file) {
BeanFactory f = new ClassPathXmlApplicationContext(file);
ContainerBean container = (ContainerBean) f.getBean("container");
assertNotNull(container);
assertNotNull(container.getBeans());
assertEquals(1, container.getBeans().length);
}
Aggregations