@Test
public void testManagedClientInjection1() throws ExecutionException, InterruptedException {
final ResourceConfig resourceConfig = new ResourceConfig(Resource4.class);
// TODO introduce new ResourceConfig.setClientProperty(Class<? extends Annotation>, String name, Object value) helper method
resourceConfig.property(Managed.class.getName() + ".property.test-property", "test-value");
initiateWebApplication(resourceConfig);
final ContainerResponse response = apply(
RequestContextBuilder.from("/test/1", "GET").
build()