CVS: junit/src/org/junit/runner JUnitCore.java, 1.1, 1.2

David Saff <[email protected]> Tue, 20 Mar 2007 07:43:53 -0700
Newsgroups gmane.comp.java.junit.devel
Message-ID <[email protected]>
Update of /cvsroot/junit/junit/src/org/junit/runner
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv30152/src/org/junit/runner

Modified Files:
	JUnitCore.java 
Log Message:
Runner rearchitecting to begin 4.4 development	 

Index: JUnitCore.java
===================================================================
RCS file: /cvsroot/junit/junit/src/org/junit/runner/JUnitCore.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- JUnitCore.java	21 Nov 2006 18:53:39 -0000	1.1
+++ JUnitCore.java	20 Mar 2007 14:43:50 -0000	1.2
@@ -4,8 +4,8 @@
 import java.util.List;
 
 import junit.runner.Version;
-import org.junit.internal.runners.OldTestClassRunner;
-import org.junit.internal.runners.TextListener;
+import org.junit.internal.TextListener;
+import org.junit.internal.runners.JUnit38ClassRunner;
 import org.junit.runner.notification.Failure;
 import org.junit.runner.notification.RunListener;
 import org.junit.runner.notification.RunNotifier;
@@ -115,7 +115,7 @@
 	 * @return a {@link Result} describing the details of the test run and the failed tests.
 	 */
 	public Result run(junit.framework.Test test) { 
-		return run(new OldTestClassRunner(test));
+		return run(new JUnit38ClassRunner(test));
 	}
 	
 	/**


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV