LoggingInterceptorFactory f = new LoggingInterceptorFactory();
f.setFactory(cf);
MockControl spControl = newControl(ServicePoint.class);
ServicePoint sp = (ServicePoint) spControl.getMock();
MockControl moduleControl = newControl(Module.class);
Module module = (Module) moduleControl.getMock();
// Training
sp.getServiceInterface();
spControl.setReturnValue(Runnable.class);
sp.getModule();
spControl.setReturnValue(module);
module.getClassResolver();
moduleControl.setReturnValue(new DefaultClassResolver());
sp.getExtensionPointId();
spControl.setReturnValue("foo.bar");
replayControls();
InterceptorStackImpl is = new InterceptorStackImpl(log, sp, r);