From: Aaron A. <aa...@us...> - 2007-10-02 02:17:21
|
Update of /cvsroot/jboost/jboost/src/jboost In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv6594 Modified Files: AllTests.java Log Message: Added AtreeTestSuite to tests Index: AllTests.java =================================================================== RCS file: /cvsroot/jboost/jboost/src/jboost/AllTests.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** AllTests.java 16 May 2007 04:06:02 -0000 1.1.1.1 --- AllTests.java 2 Oct 2007 02:17:14 -0000 1.2 *************** *** 7,10 **** --- 7,11 ---- import jboost.booster.BoosterTestSuite; import jboost.controller.ControllerTestSuite; + import jboost.atree.AtreeTestSuite; import junit.framework.Test; import junit.framework.TestSuite; *************** *** 21,24 **** --- 22,26 ---- suite.addTest(BoosterTestSuite.suite()); suite.addTest(ControllerTestSuite.suite()); + suite.addTest(AtreeTestSuite.suite()); //$JUnit-END$ return suite; |