Lines Matching full:classes
19 * build a suite containing tests from many classes. It is the JUnit 4 equivalent of the JUnit 3.8.x
22 * When you run this class, it will run all the tests in all the suite classes.
37 * The <code>SuiteClasses</code> annotation specifies the classes to be run when a class
45 * @return the classes to be run
60 * Called reflectively on classes annotated with <code>@RunWith(Suite.class)</code>
63 * @param builder builds runners for classes in the suite
74 * @param builder builds runners for classes in the suite
75 * @param classes the classes in the suite
78 public Suite(RunnerBuilder builder, Class<?>[] classes) throws InitializationError { in Suite() argument
79 this(null, builder.runners(null, classes)); in Suite()
85 * @param suiteClasses the classes in the suite
93 * Called by this class and subclasses once the classes making up the suite have been determined
95 * @param builder builds runners for classes in the suite
97 * @param suiteClasses the classes in the suite