Package org.springframework.context.support

Examples of org.springframework.context.support.ClassPathXmlApplicationContext.containsBean()


    @Test
    public void givenDevelopmentEnvironmentTheCorrectImportsAreProcessed() {
        ApplicationContext ctx = new ClassPathXmlApplicationContext("org/constretto/spring/namespacehandler/ImportWithSpecifiedResolverTest-context.xml");
        Assert.assertTrue(ctx.containsBean("inMainConfig"));
        Assert.assertFalse(ctx.containsBean("inJunitConfig"));
        Assert.assertTrue(ctx.containsBean("inDevelopmentConfig"));
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.