@Test
public void getPropertyAnnotation_should_return_null_if_accessor_is_not_property_accessor()
{
final Accessor propertyAccessor = Mockito.mock(Accessor.class);
final ObjectDiffTest annotation = new DiffNode(propertyAccessor, Object.class).getPropertyAnnotation(ObjectDiffTest.class);
assertThat(annotation).isNull();
}