Package org.springframework.config.java.test

Class Summary
JavaConfigContextLoader Implementation of the ContextLoader strategy for creating a JavaConfigApplicationContext for a test's @ContextConfiguration

Example usage:

 @RunWith(SpringJUnit4ClassRunner.class)
 @ContextConfiguration(locations = {"com.myco.TestDatabaseConfiguration", "com.myco.config"},
                       loader = JavaConfigContextLoader.class)
 public MyTests { ...