assertThat(new DeepCopy().copy(null), equalTo(null));
}
@Test(expected = IllegalArgumentException.class)
public void theEntityToCopyMustHaveNotEmptyConstructor() {
EntityWithoutNoArgsConstructor entity = new EntityWithoutNoArgsConstructor(
"bla");
new DeepCopy().copy(entity);
}