|
From: David C. <dc...@us...> - 2005-10-16 23:52:47
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.ui.tests/src/org/rubypeople/rdt/ui/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24462/src/org/rubypeople/rdt/ui/tests Added Files: TS_Ui.java Log Message: Organize tests for consistency. Found a few TCs that weren't being called for the main suite. --- NEW FILE: TS_Ui.java --- package org.rubypeople.rdt.ui.tests; import junit.framework.Test; import junit.framework.TestSuite; import org.rubypeople.rdt.internal.ui.TS_InternalUi; import org.rubypeople.rdt.internal.ui.rubyeditor.TS_InternalUiRubyEditor; import org.rubypeople.rdt.internal.ui.text.TS_InternalUiText; public class TS_Ui { public static Test suite() { TestSuite suite = new TestSuite("org.rubypeople.rdt.ui.tests"); suite.addTest(TS_InternalUi.suite()); suite.addTest(TS_InternalUiRubyEditor.suite()); suite.addTest(TS_InternalUiText.suite()); return suite; } } |