Package org.junit.runners.Suite

Examples of org.junit.runners.Suite.SuiteClasses


   
    protected static class SuiteWithStringInName extends Suite
    {
      private static Class<?>[] getAnnotatedClasses(Class<?> klass) throws InitializationError {
        SuiteClasses annotation= klass.getAnnotation(SuiteClasses.class);
        if (annotation == null)
          throw new InitializationError(String.format("class '%s' must have a SuiteClasses annotation", klass.getName()));
        return annotation.value();
      }
View Full Code Here

TOP

Related Classes of org.junit.runners.Suite.SuiteClasses

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.