[ejuf-cvs] ejuf/src/java/core/junit/framework TestCase.java,1.1,1.2
Brought to you by:
fbos
|
From: <fb...@us...> - 2002-12-27 20:03:58
|
Update of /cvsroot/ejuf/ejuf/src/java/core/junit/framework
In directory sc8-pr-cvs1:/tmp/cvs-serv18688/core/junit/framework
Modified Files:
TestCase.java
Log Message:
Made junit.framework.TestCase implement Testable so that TestCases may be found by ClasspathTestSource.
This has introduced a bug where the ClasspathTestSource should ignore the class junit.framework.TestCase.
This is an option that should be added to ClasspathTestSource.
Index: TestCase.java
===================================================================
RCS file: /cvsroot/ejuf/ejuf/src/java/core/junit/framework/TestCase.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TestCase.java 15 Nov 2002 14:10:01 -0000 1.1
--- TestCase.java 27 Dec 2002 20:03:55 -0000 1.2
***************
*** 4,8 ****
* @deprecated Replaced by {@link ejuf.framework.Test} and {@link ejuf.framework.TestFixture}.
*/
! public class TestCase extends Assert implements junit.framework.Test {
public TestCase() {
}
--- 4,8 ----
* @deprecated Replaced by {@link ejuf.framework.Test} and {@link ejuf.framework.TestFixture}.
*/
! public class TestCase extends Assert implements junit.framework.Test, ejuf.framework.Testable {
public TestCase() {
}
|