factory.bindInjector(new SelfInjector(), new ServicePropertiesMap(2, 2));
}
@Test
public void testConstructorInjection() {
WithOneConstructorModel model = factory.getAdapter(request, WithOneConstructorModel.class);
assertNotNull(model);
assertEquals(request, model.getRequest());
assertEquals(INT_VALUE, model.getAttribute());
}