* @since 1.1
*/
public void testDoubleStartup()
{
MockControl spc = newControl(ServicePoint.class);
ServicePoint sp = (ServicePoint) spc.getMock();
Runnable service = (Runnable) newMock(Runnable.class);
// Training
sp.getExtensionPointId();
spc.setReturnValue("hivemind.Startup");
sp.getServiceInterfaceClassName();
spc.setReturnValue(Runnable.class.getName());
sp.visibleToModule(null);
spc.setReturnValue(true);
sp.getService(Runnable.class);
spc.setReturnValue(service);
service.run();
replayControls();