@Test
public void acceptClone() throws Exception {
Locale locale = entityManager.find(Locale.class, pk);
DES3CiphererDecipherer visitor = new DES3CiphererDecipherer();
visitor.init();
Locale clone = visitor.visit(locale);
assertTrue("Just the same", clone.equals(locale));
}
@Test
public void acceptField() throws Exception {