Package org.springframework.test.context

Examples of org.springframework.test.context.SmartContextLoader


      if (logger.isTraceEnabled()) {
        logger.trace(String.format("Processing locations and classes for context configuration attributes %s",
          configAttributes));
      }
      if (contextLoader instanceof SmartContextLoader) {
        SmartContextLoader smartContextLoader = (SmartContextLoader) contextLoader;
        smartContextLoader.processContextConfiguration(configAttributes);
        locationsList.addAll(0, Arrays.asList(configAttributes.getLocations()));
        classesList.addAll(0, Arrays.asList(configAttributes.getClasses()));
      }
      else {
        String[] processedLocations = contextLoader.processLocations(configAttributes.getDeclaringClass(),
View Full Code Here

TOP

Related Classes of org.springframework.test.context.SmartContextLoader

Copyright © 2018 www.massapicom. 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.