|
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/builder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24494/src/org/rubypeople/rdt/internal/core/builder Modified Files: TC_MassIndexUpdater.java Added Files: TS_InternalCoreBuilder.java Removed Files: TS_CoreBuilder.java Log Message: Organize tests for consistency. Found a few TCs that weren't being called for the main suite. --- TS_CoreBuilder.java DELETED --- --- NEW FILE: TS_InternalCoreBuilder.java --- /* * Author: David Corbin * * 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.builder; import junit.framework.Test; import junit.framework.TestSuite; public class TS_InternalCoreBuilder { public static Test suite() { TestSuite suite = new TestSuite(); suite.addTestSuite(TC_TaskCompiler.class); suite.addTestSuite(TC_RdtCompiler.class); suite.addTestSuite(TC_MassIndexUpdater.class); suite.addTestSuite(TC_IndexUpdater.class); return suite; } } Index: TC_MassIndexUpdater.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.core.tests/src/org/rubypeople/rdt/internal/core/builder/TC_MassIndexUpdater.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TC_MassIndexUpdater.java 16 Oct 2005 17:29:16 -0000 1.1 --- TC_MassIndexUpdater.java 16 Oct 2005 23:52:44 -0000 1.2 *************** *** 53,57 **** projects.add(project2); ! massUpdater.update(projects); RubySourceFileCollectingVisitor expectedVisitor = new RubySourceFileCollectingVisitor(new ArrayList()); --- 53,57 ---- projects.add(project2); ! massUpdater.updateProjects(projects); RubySourceFileCollectingVisitor expectedVisitor = new RubySourceFileCollectingVisitor(new ArrayList()); |