|
From: David C. <dc...@us...> - 2005-10-16 23:53:00
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.tests.all/src/org/rubypeople/rdt/tests/all In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24548/src/org/rubypeople/rdt/tests/all Modified Files: TS_RdtAllUnitTests.java TS_RdtAllFunctionalTests.java Log Message: Organize tests for consistency. Found a few TCs that weren't being called for the main suite. Index: TS_RdtAllFunctionalTests.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.tests.all/src/org/rubypeople/rdt/tests/all/TS_RdtAllFunctionalTests.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TS_RdtAllFunctionalTests.java 1 Oct 2005 23:10:55 -0000 1.3 --- TS_RdtAllFunctionalTests.java 16 Oct 2005 23:52:53 -0000 1.4 *************** *** 4,8 **** import junit.framework.TestSuite; ! import org.rubypeople.rdt.debug.core.tests.TS_Debug; public class TS_RdtAllFunctionalTests { --- 4,8 ---- import junit.framework.TestSuite; ! import org.rubypeople.rdt.debug.core.tests.FTS_Debug; public class TS_RdtAllFunctionalTests { *************** *** 13,17 **** // org.rubypeople.rdt.debug.core.tests ! suite.addTest(TS_Debug.suite()); //$JUnit-END$ --- 13,17 ---- // org.rubypeople.rdt.debug.core.tests ! suite.addTest(FTS_Debug.suite()); //$JUnit-END$ Index: TS_RdtAllUnitTests.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.tests.all/src/org/rubypeople/rdt/tests/all/TS_RdtAllUnitTests.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TS_RdtAllUnitTests.java 1 Oct 2005 23:10:55 -0000 1.3 --- TS_RdtAllUnitTests.java 16 Oct 2005 23:52:53 -0000 1.4 *************** *** 4,12 **** import junit.framework.TestSuite; ! import org.rubypeople.rdt.internal.core.TS_Core; ! import org.rubypeople.rdt.internal.debug.ui.tests.launcher.TS_Launcher; ! import org.rubypeople.rdt.internal.formatter.TC_CodeFormatter; ! import org.rubypeople.rdt.internal.launching.TS_Launching; ! import org.rubypeople.rdt.internal.ui.TS_UiTests; public class TS_RdtAllUnitTests { --- 4,11 ---- import junit.framework.TestSuite; ! import org.rubypeople.rdt.core.TS_Core; ! import org.rubypeople.rdt.debug.ui.tests.TS_DebugUi; ! import org.rubypeople.rdt.internal.launching.TS_InternalLaunching; ! import org.rubypeople.rdt.internal.ui.TS_InternalUi; public class TS_RdtAllUnitTests { *************** *** 18,31 **** // org.rubypeople.rdt.core.tests suite.addTest(TS_Core.suite()); - suite.addTestSuite(TC_CodeFormatter.class) ; // org.rubypeople.rdt.launching.tests ! suite.addTest(TS_Launching.suite()); // org.rubypeople.rdt.ui.tests ! suite.addTest(TS_UiTests.suite()); // org.rubypeople.rdt.debug.ui.tests ! suite.addTest(TS_Launcher.suite()); //$JUnit-END$ --- 17,29 ---- // org.rubypeople.rdt.core.tests suite.addTest(TS_Core.suite()); // org.rubypeople.rdt.launching.tests ! suite.addTest(TS_InternalLaunching.suite()); // org.rubypeople.rdt.ui.tests ! suite.addTest(TS_InternalUi.suite()); // org.rubypeople.rdt.debug.ui.tests ! suite.addTest(TS_DebugUi.suite()); //$JUnit-END$ |