assertNotNull("Check nullable", nullable);
assertEquals("Check nullable value", "false", nullable);
}
public void testDefaultImplmentation() {
Element meta = helper.getMetadata("org.apache.felix.ipojo.test.scenarios.component.DefaultImplementationDependency");
Element[] deps = meta.getElements("requires");
Element fs = getDependencyById(deps, "fs");
String di = fs.getAttribute("default-implementation");
assertNotNull("Check DI", di);
assertEquals("Check DI value", ProvidesSimple.class.getName(), di);
}