| Line | Hits | Source |
|---|---|---|
| 1 | package umich.cac.util.test; | |
| 2 | ||
| 3 | import junit.framework.Test; | |
| 4 | import junit.framework.TestSuite; | |
| 5 | ||
| 6 | /** | |
| 7 | * TestSuite that runs all the umich.cac.util.test tests. | |
| 8 | * | |
| 9 | * @author rmach@umich.edu | |
| 10 | * @version $Header: /cvsroot/pbsaccounting/pbsaccounting/src/umich/cac/util/test/AllTests.java,v 1.2 2003/10/21 19:08:00 rodmach Exp $ | |
| 11 | */ | |
| 12 | 0 | public class AllTests { |
| 13 | ||
| 14 | /** | |
| 15 | * Makes a TestSuite containing all of the unit tests. | |
| 16 | * | |
| 17 | * @return TestSuite containg all of the unit tests. | |
| 18 | */ | |
| 19 | public static Test suite() { | |
| 20 | 3 | TestSuite suite = new TestSuite("All umich.cac.util tests"); |
| 21 | ||
| 22 | 3 | suite.addTest(PasswdTest.suite()); |
| 23 | ||
| 24 | 3 | return suite; |
| 25 | } | |
| 26 | } |
|
this report was generated by version 1.0.5 of jcoverage. |
copyright © 2003, jcoverage ltd. all rights reserved. |