Package org.springframework.test.context

Examples of org.springframework.test.context.ActiveProfilesResolver.resolve()


            + "type [%s] for test class [%s].", resolverClass.getName(), rootDeclaringClass.getName());
        logger.error(msg);
        throw new IllegalStateException(msg, e);
      }

      String[] profiles = resolver.resolve(rootDeclaringClass);
      if (profiles == null) {
        String msg = String.format(
          "ActiveProfilesResolver [%s] returned a null array of bean definition profiles.",
          resolverClass.getName());
        logger.error(msg);
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.