public void reset() {
   UnitOfWork uow = getSession().acquireUnitOfWork();
   Iterator i = holders.iterator();
   while (i.hasNext()) {
     AggregateEntityMapHolder holder = (AggregateEntityMapHolder) i.next();
     Iterator j = holder.getAggregateToEntityMap().keySet().iterator();
     while (j.hasNext()) {
       uow.deleteObject(holder.getAggregateToEntityMap().get(j.next()));
     }
   }
   uow.deleteAllObjects(holders);
   uow.commit();
   if (!verifyDelete(holders.get(0))) {
     throw new TestErrorException("Delete was unsuccessful.");
   }
   mapping.setJoinFetch(oldFetchJoinValue);
 }
  public void verify() {
    if (holders == null || holders.size() != 1) {
      throw new TestErrorException("Incorrect number of MapHolders was read.");
    }
    AggregateEntityMapHolder holder = (AggregateEntityMapHolder) holders.get(0);

    if (!((IndirectMap) holder.getAggregateToEntityMap()).getValueHolder().isInstantiated()
        && fetchJoinRelationship > 0) {
      throw new TestErrorException("Relationship was not properly joined.");
    }

    if (holder.getAggregateToEntityMap().size() != 2) {
      throw new TestErrorException("Incorrect Number of MapEntityValues was read.");
    }
    AggregateMapKey mapKey = new AggregateMapKey();
    mapKey.setKey(11);
    EntityMapValue value = (EntityMapValue) holder.getAggregateToEntityMap().get(mapKey);
    if (value.getId() != 1) {
      throw new TestErrorException("Incorrect MapEntityValues was read.");
    }
  }