|
From: David C. <dc...@us...> - 2005-10-16 23:53:10
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.debug.ui.tests/src/org/rubypeople/rdt/debug/ui/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24567/src/org/rubypeople/rdt/debug/ui/tests Added Files: TS_DebugUi.java RdtDebugUiTestsPlugin.java Log Message: Organize tests for consistency. Found a few TCs that weren't being called for the main suite. --- NEW FILE: TS_DebugUi.java --- package org.rubypeople.rdt.debug.ui.tests; import org.rubypeople.rdt.internal.debug.ui.TS_InternalDebugUi; import org.rubypeople.rdt.internal.debug.ui.launcher.TS_InternalDebugUiLauncher; import junit.framework.Test; import junit.framework.TestSuite; public class TS_DebugUi { public static Test suite() { TestSuite suite = new TestSuite("Test for org.rubypeople.rdt.debug.ui"); suite.addTest(TS_InternalDebugUiLauncher.suite()); suite.addTest(TS_InternalDebugUi.suite()); return suite; } } --- NEW FILE: RdtDebugUiTestsPlugin.java --- package org.rubypeople.rdt.debug.ui.tests; import org.eclipse.core.resources.IWorkspace; import org.eclipse.core.resources.ResourcesPlugin; import org.eclipse.core.runtime.Plugin; import org.eclipse.ui.plugin.AbstractUIPlugin; /** * The main plugin class to be used in the desktop. */ public class RdtDebugUiTestsPlugin extends AbstractUIPlugin { //The shared instance. private static RdtDebugUiTestsPlugin plugin; /** * The constructor. */ public RdtDebugUiTestsPlugin() { super(); plugin = this; } /** * Returns the shared instance. */ public static Plugin getDefault() { return plugin; } /** * Returns the workspace instance. */ public static IWorkspace getWorkspace() { return ResourcesPlugin.getWorkspace(); } } |