Coverage details for umich.cac.test.AllUnitTests

LineHitsSource
1 package umich.cac.test;
2  
3 import junit.framework.Test;
4 import junit.framework.TestSuite;
5  
6 /**
7  * TestSuite that runs all unit tests.
8  */
9  
100public class AllUnitTests {
11  
12     /**
13      * Makes a TestSuite containing all of the CAC unit tests.
14      *
15      * @returns TestSuite containing all of the CAC unit tests.
16      */
17     public static Test suite() {
183        TestSuite suite = new TestSuite("All unit tests");
193        suite.addTest(umich.cac.util.test.AllTests.suite());
203        suite.addTest(umich.cac.pbs.test.AllTests.suite());
213        suite.addTest(umich.cac.data.test.AllTests.suite());
223        return suite;
23     }
24 }

this report was generated by version 1.0.5 of jcoverage.
visit www.jcoverage.com for updates.

copyright © 2003, jcoverage ltd. all rights reserved.
Java is a trademark of Sun Microsystems, Inc. in the United States and other countries.