|
From: <caw...@us...> - 2007-05-03 17:52:02
|
Revision: 2431
http://svn.sourceforge.net/rubyeclipse/?rev=2431&view=rev
Author: cawilliams
Date: 2007-05-03 10:51:59 -0700 (Thu, 03 May 2007)
Log Message:
-----------
add unit tests for refactoring and new aptana rdt extension
Modified Paths:
--------------
trunk/org.rubypeople.rdt.tests.all/plugin.xml
trunk/org.rubypeople.rdt.tests.all/src/org/rubypeople/rdt/tests/all/TS_RdtAllUnitTests.java
Modified: trunk/org.rubypeople.rdt.tests.all/plugin.xml
===================================================================
--- trunk/org.rubypeople.rdt.tests.all/plugin.xml 2007-05-03 17:51:32 UTC (rev 2430)
+++ trunk/org.rubypeople.rdt.tests.all/plugin.xml 2007-05-03 17:51:59 UTC (rev 2431)
@@ -16,6 +16,8 @@
<import plugin="org.rubypeople.rdt.launching.tests"/>
<import plugin="org.rubypeople.rdt.debug.core.tests"/>
<import plugin="org.rubypeople.rdt.ui.tests"/>
+ <import plugin="com.aptana.rdt.tests"/>
+ <import plugin="org.rubypeople.rdt.refactoring.tests"/>
</requires>
</plugin>
Modified: trunk/org.rubypeople.rdt.tests.all/src/org/rubypeople/rdt/tests/all/TS_RdtAllUnitTests.java
===================================================================
--- trunk/org.rubypeople.rdt.tests.all/src/org/rubypeople/rdt/tests/all/TS_RdtAllUnitTests.java 2007-05-03 17:51:32 UTC (rev 2430)
+++ trunk/org.rubypeople.rdt.tests.all/src/org/rubypeople/rdt/tests/all/TS_RdtAllUnitTests.java 2007-05-03 17:51:59 UTC (rev 2431)
@@ -7,7 +7,10 @@
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;
+import org.rubypeople.rdt.refactoring.tests.TS_All;
+import com.aptana.rdt.TS_Aptana;
+
public class TS_RdtAllUnitTests {
public static Test suite() {
@@ -25,7 +28,13 @@
// org.rubypeople.rdt.debug.ui.tests
suite.addTest(TS_DebugUi.suite());
+
+ // com.aptana.rdt.tests
+ suite.addTest(TS_Aptana.suite());
+ // org.rubypeople.rdt.refactoring.tests
+ suite.addTest(TS_All.suite());
+
//$JUnit-END$
return suite;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|