use of org.apache.aries.blueprint.pojos.SimpleBean in project aries by apache.
the class BeanLoadingTest method testLoadSimpleBean.
public void testLoadSimpleBean() throws Exception {
ComponentDefinitionRegistryImpl registry = parse("/test-bean-classes.xml");
Repository repository = new TestBlueprintContainer(registry).getRepository();
Object obj = repository.create("simpleBean");
assertNotNull(obj);
assertTrue(obj instanceof SimpleBean);
}
Aggregations