source: trunk/quest-core-assertions-test/src/test/java/de/ugoe/cs/quest/assertions/TestAll.java @ 518

Last change on this file since 518 was 518, checked in by sherbold, 12 years ago
  • initial commit of quest-core-assertions, quest-core-assertions-test, quest-core-coverage, quest-core-coverage-test, quest-core-usageprofiles, and quest-core-usageprofiles-test
  • Property svn:mime-type set to text/plain
File size: 684 bytes
Line 
1package de.ugoe.cs.quest.assertions;
2
3import org.junit.runner.JUnitCore;
4import org.junit.runner.RunWith;
5import org.junit.runners.Suite;
6
7/**
8 * The class <code>TestAll</code> builds a suite that can be used to run all
9 * of the tests within its package as well as within any subpackages of its
10 * package.
11 *
12 * @generatedBy CodePro at 12/21/11 11:53 AM
13 * @author Steffen Herbold
14 * @version 1.0
15 */
16@RunWith(Suite.class)
17@Suite.SuiteClasses({
18        FileEqualsReplayTest.class,
19        TextEqualsReplayTest.class,
20        AssertEventTest.class
21})
22public class TestAll {
23
24        public static void main(String[] args) {
25                JUnitCore.runClasses(new Class[] { TestAll.class });
26        }
27}
Note: See TracBrowser for help on using the repository browser.