return result;
}
public PropertyMapper propertyMapperForComponent() throws NoSuchMethodException {
MapperContext context = new MapperContext();
CommentMapping mapping = new CommentMapping();
mapping.buildMapper(context);
final ClassMapper classMapper = mock(ClassMapper.class);
when(classMapper.getContext()).thenReturn(context);
when(classMapper.getPersistentType()).thenReturn(FakeAggregate.class);
final Method method = FakeAggregate.class.getMethod("getComment", null);
FieldContainer fieldContainer = new FieldContainer(method);