|
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/formatter In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24494/src/org/rubypeople/rdt/internal/formatter Added Files: TS_InternalFormatter.java Log Message: Organize tests for consistency. Found a few TCs that weren't being called for the main suite. --- NEW FILE: TS_InternalFormatter.java --- package org.rubypeople.rdt.internal.formatter; import junit.framework.Test; import junit.framework.TestSuite; public class TS_InternalFormatter { public static Test suite() { TestSuite suite = new TestSuite(); suite.addTestSuite(TC_CodeFormatter.class); return suite; } } |