Description
Using a code similar to this
...
testRealm = entityFactory.newEntity(Realm.class);
testRealm.setName('Test');
orgUnitComputadoresRealm.setParent(realmDAO.getRoot();
realmDAO.save(testRealm);
..
is possible to create a Realm with the same name in the same parent realm
I think an exception should be triggered in the realmDAO.save call
(Or the Database is missing a Unique key)