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