Collections.<String, String> emptyMap());
S07ImplementationImporter06 dependency = (S07ImplementationImporter06) instance
.getServiceObject();
ComponentImpl ci = (ComponentImpl) implementation;
Assert.assertTrue(
"In relation, testing creation='lazy'. There should not exist a link before the dependency call",
ci.getLocalLinks().size() == 0);
auxListInstances();
// Instance instanceInjectedReference =
// auxListInstanceReferencedBy(dependency
// .getInjected());
// Force field injection
dependency.getInjected();
Assert.assertTrue(
"Using an relation with creation='lazy' should instantiate after the dependency is called, which didnt happened",
ci.getLocalLinks().size() == 1);
}