Hold h = retentionMgr.addHold(testNodePath, getHoldName(), true);
assertEquals("Hold.getName() must return the specified name.",holdName, h.getName());
}
public void testHoldIsDeep() throws RepositoryException, NotExecutableException {
Hold h = retentionMgr.addHold(testNodePath, getHoldName(), false);
assertEquals("Hold.isDeep() must reflect the specified flag.", false, h.isDeep());
}