Assert.assertEquals(loaded.getStrMap().keySet(), new HashSet<String>(Arrays.asList("one", "two", "three")));
Assert.assertEquals(loaded.getLazyStrMap().keySet(), new HashSet<String>(Arrays.asList("one", "two", "three")));
loaded = session.loadOne(LazySimpleEntity.class, 1);
session.update(loaded);
Assert.assertNotNull(loaded);
Assert.assertEquals(loaded.getId(), 1);
Assert.assertNotNull(loaded.getStrList());
Assert.assertNotNull(loaded.getStrSet());