// capture the renewal time
String property = "com.sun.jini.test.spec.renewalservice.renewGrant";
renewGrant = getConfig().getLongConfigVal(property, DEFAULT_RENEW_GRANT);
// create an owner for the lease that will renewal successfully
succeedingOwner = new OpCountingOwner(renewGrant);
// create an owner for the lease that will throw a definite exception
String testName = "AssocRenewalFailSetTest";
Exception except = new UnknownLeaseException(testName);
failingOwner = new FailingOpCountingOwner(except, 0, renewGrant*2);