Files
macports-ports/java/ccl-util/files/patch-src-AssertTestCase
Toby Peterson ad271e2bb0 ccl-util 32.69
git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@14181 d073be05-634f-4543-b044-5fe20cf6d1d6
2005-09-20 20:15:17 +00:00

31 lines
998 B
Plaintext

diff -ur src/junit/framework/test/AssertTestCase.java src/junit/framework/test/AssertTestCase.java
--- src/junit/framework/test/AssertTestCase.java 2003-11-23 10:18:26.000000000 -0600
+++ src/junit/framework/test/AssertTestCase.java 2005-08-31 10:31:52.000000000 -0500
@@ -53,7 +53,7 @@
* Test method that has to be invoked during one of the tests.
*/
public void testExample() {
- assert( true );
+ Assert( true );
}
/**
@@ -126,7 +126,7 @@
*
* @deprecated don't use this anymore, use standard JUnit API.
*/
- public void assert( boolean condition, String message )
+ public void Assert( boolean condition, String message )
{
assertTrue( message, condition );
}
@@ -136,7 +136,7 @@
*
* @deprecated don't use this anymore, use standard JUnit API.
*/
- public void assert( boolean condition )
+ public void Assert( boolean condition )
{
assertTrue( condition );
}