return assertClassLoader(context);
}
protected ClassLoader assertStarted(KernelControllerContext context) throws Exception
{
MockLifeCycle lifeCycle = assertLifeCycle(context);
assertTrue(context.getName() + " should be resolved: " + context.getDependencyInfo().getUnresolvedDependencies(null), lifeCycle.isResolved());
assertTrue(context.getName() + " should be started", lifeCycle.isStarted());
assertEquals(ControllerState.INSTALLED, context.getState());
return assertClassLoader(context);
}