|
From: David C. <dc...@us...> - 2005-10-16 23:52:52
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core.tests/src/org/rubypeople/rdt/internal/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24494/src/org/rubypeople/rdt/internal/core Added Files: TS_InternalCore.java TC_SymbolIndexResourceEventListener.java Removed Files: TS_Core.java Log Message: Organize tests for consistency. Found a few TCs that weren't being called for the main suite. --- NEW FILE: TS_InternalCore.java --- /* * Copyright (c) 2005 RubyPeople. * * This file is part of the Ruby Development Tools (RDT) plugin for eclipse. * RDT is subject to the "Common Public License (CPL) v 1.0". You may not use * RDT except in compliance with the License. For further information see * org.rubypeople.rdt/rdt.license. */ package org.rubypeople.rdt.internal.core; import junit.framework.Test; import junit.framework.TestSuite; public class TS_InternalCore { public static Test suite() { TestSuite suite = new TestSuite(); suite.addTestSuite(TC_RubyCore.class); suite.addTestSuite(TC_RubyProject.class); suite.addTestSuite(TC_LoadPathEntry.class); suite.addTestSuite(TC_SymbolIndexResourceEventListener.class); return suite; } } --- TS_Core.java DELETED --- --- NEW FILE: TC_SymbolIndexResourceEventListener.java --- package org.rubypeople.rdt.internal.core; import junit.framework.TestCase; public class TC_SymbolIndexResourceEventListener extends TestCase { public void testSomething() throws Exception { } } |