ServicePoint sp = new ServicePointImpl(m, null);
replayControls();
CreateClassServiceConstructor c = new CreateClassServiceConstructor(newLocation(),
"java.util.HashMap");
ImplementationConstructionContext context = new ImplementationConstructionContextImpl(m, sp);
Object o1 = c.constructCoreServiceImplementation(context);
Object o2 = c.constructCoreServiceImplementation(context);
assertNotSame(o1, o2);
assertTrue(o1 instanceof HashMap);
assertTrue(o2 instanceof HashMap);