Package org.junit.runners

Source Code of org.junit.runners.Suite

package org.junit.runners;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import org.junit.internal.runners.InitializationError;
import org.junit.internal.runners.TestClassRunner;
import org.junit.runner.Request;

/**
* Using <code>Suite</code> as a runner allows you to manually
* build a suite containing tests from many classes. It is the JUnit 4 equivalent of the JUnit 3.8.x
* <code>static junit.framework.Test suite()</code> method. To use it, annotate a class
* with <code>@RunWith(Suite.class)</code> and <code>SuiteClasses(TestClass1.class, ...)</code>.
* When you run this class, it will run all the tests in all the suite classes.
*/
public class Suite extends TestClassRunner {
  /**
   * The <code>SuiteClasses</code> annotation specifies the classes to be run when a class
   * annotated with <code>@RunWith(Suite.class)</code> is run.
   */
  @Retention(RetentionPolicy.RUNTIME)
  @Target(ElementType.TYPE)
  public @interface SuiteClasses {
    public Class[] value();
  }

  /**
   * Internal use only.
   */
  public Suite(Class<?> klass) throws InitializationError {
    this(klass, getAnnotatedClasses(klass));
  }

  /**
   * Internal use only.
   */
  public Suite(Class<?> klass, Class[] annotatedClasses) throws InitializationError {
    super(klass, Request.classes(klass.getName(), annotatedClasses).getRunner());
  }

  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();
  }
}
TOP

Related Classes of org.junit.runners.Suite

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.