|
From: Nat P. <np...@us...> - 2002-11-01 15:37:31
|
Update of /cvsroot/mockobjects/mockobjects-java/src/core/com/mockobjects/util
In directory usw-pr-cvs1:/tmp/cvs-serv32458/src/core/com/mockobjects/util
Modified Files:
TestCaseMo.java
Log Message:
Added AutoTestSuite that finds and loads all tests. Useful for Eclipse users.
Made TestCaseMo abstract so that it isn't considered to be an actual test suite by AutoTestSuite objects.
Index: TestCaseMo.java
===================================================================
RCS file: /cvsroot/mockobjects/mockobjects-java/src/core/com/mockobjects/util/TestCaseMo.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- TestCaseMo.java 25 Oct 2002 22:06:08 -0000 1.2
+++ TestCaseMo.java 1 Nov 2002 15:37:28 -0000 1.3
@@ -9,7 +9,7 @@
* JUnit interface changes (like the change from 2.x to 3.1)
*/
-public class TestCaseMo extends TestCase {
+public abstract class TestCaseMo extends TestCase {
public TestCaseMo(String name) {
super(name);
|