|
From: David C. <dc...@us...> - 2005-10-16 23:52:52
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core.tests/src/org/rubypeople/rdt/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24494/src/org/rubypeople/rdt/core Added 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_Core.java --- /* * Author: * * 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.core; import junit.framework.Test; import junit.framework.TestSuite; import org.rubypeople.rdt.internal.core.TS_InternalCore; import org.rubypeople.rdt.internal.core.builder.TS_InternalCoreBuilder; import org.rubypeople.rdt.internal.core.parser.TS_InternalCoreParser; import org.rubypeople.rdt.internal.core.symbols.TS_CoreSymbols; import org.rubypeople.rdt.internal.formatter.TS_InternalFormatter; public class TS_Core { public static Test suite() { TestSuite suite = new TestSuite(); suite.addTest(TS_InternalCoreBuilder.suite()); suite.addTest(TS_InternalCoreParser.suite()); suite.addTest(TS_CoreSymbols.suite()); suite.addTest(TS_InternalCore.suite()); suite.addTest(TS_InternalFormatter.suite()); return suite; } } |