~ubuntu-branches/ubuntu/quantal/junitperf/quantal

« back to all changes in this revision

Viewing changes to test/com/clarkware/junitperf/AllTests.java

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Vandyck
  • Date: 2006-11-06 12:10:29 UTC
  • mfrom: (3.1.3 edgy)
  • Revision ID: james.westby@ubuntu.com-20061106121029-0f8e7pzmig6sh1x5
Tags: 1.9.1-5
* built with java-gcj-compat-dev.
* debian/rules: 
  + removed ant-launcher.jar
  + removed the test target (closes: #396419)
* Standards-Version: 3.7.2 (no change)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package com.clarkware.junitperf;
 
2
 
 
3
import junit.framework.Test;
 
4
import junit.framework.TestSuite;
 
5
 
 
6
/**
 
7
 * The <code>AllTests</code> is a <code>TestCase</code> 
 
8
 * for all JUnitPerf tests.
 
9
 * 
 
10
 * @author <a href="mailto:mike@clarkware.com">Mike Clark</a>
 
11
 * @author <a href="http://www.clarkware.com">Clarkware Consulting, Inc.</a>
 
12
 */
 
13
 
 
14
public class AllTests {
 
15
 
 
16
        public static Test suite() {
 
17
                TestSuite suite = new TestSuite();
 
18
                suite.addTest(LoadTestTest.suite());
 
19
                suite.addTest(TimedTestTest.suite());
 
20
                suite.addTest(TestFactoryTest.suite());
 
21
                return suite;
 
22
        }
 
23
                
 
24
        public static void main(String[] args) {
 
25
                junit.textui.TestRunner.run(suite());
 
26
        }
 
27
}