assertThat(copy.getNullProperty(), nullValue());
}
@Test
public void enumPropertiesAreShared() {
EntityA entityA = new EntityA();
entityA.setEnumProperty(TestEnum.A);
EntityA copy = new DeepCopy().copy(entityA);
assertSame(TestEnum.A, copy.getEnumProperty());
}