Merge /pub/main
[educational.data.git] / Dr.NO / src / drno / tests / AllTests.java
blob05b2b51c05ab39224f2aed4840aafe8c60a5b7a1
1 /*
2 * Oprettet Apr 26, 2005 af tobibobi
3 */
4 package drno.tests;
6 import junit.framework.Test;
7 import junit.framework.TestSuite;
9 /**
10 * Unit test suite beregnet til at teste alle de interne funktioner i systemet.
11 * @author tobibobi
13 public class AllTests {
15 public static void main(String[] args) {
16 junit.swingui.TestRunner.run(AllTests.class);
19 public static Test suite() {
20 TestSuite suite = new TestSuite("Test for drno.tests");
21 //$JUnit-BEGIN$
22 suite.addTestSuite(RegressionTest.class);
23 suite.addTestSuite(PatientTest.class);
24 suite.addTestSuite(EmployeeTest.class);
25 //$JUnit-END$
26 return suite;