public class WebPlaceholderDelegatingContextLoaderTest extends TestCase {
public final void testLoadApplicationContext() {
WebPlaceholderDelegatingContextLoader loader = new WebPlaceholderDelegatingContextLoader();
ConfigurableApplicationContext context = loader.loadApplicationContext(null, null);
assertNotNull(context);
assertTrue(context.isActive());
}
}