}
@Test
public void testGetMethodThatIsBooleanObjectGetter() {
TestContextProvider contextProvider = new TestContextProvider();
ContextDescriptor contextDescriptor = contextDescriptorFactory.createContextDescriptor(contextProvider);
assertNotNull(contextDescriptor.getProperties().get("booleanObjectValue"));
assertEquals("isBooleanObjectValue", contextDescriptor.getProperties().get("booleanObjectValue").getName());
assertEquals(Boolean.class, contextDescriptor.getProperties().get("booleanObjectValue").getReturnType());
}