assertNotNull("can instantiate", component);
}
@Test
public void shouldSupportConstructorInjection() {
ConstructorInjection component = container.instanceFor(ConstructorInjection.class);
assertNotNull("can instantiate", component);
assertNotNull("inject dependencies", component.getDependecy());
}