Remove specific reference to Assert class.

(conforms to general style of lang test cases)


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137584 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2003-08-13 23:08:06 +00:00
parent e0ccb82824
commit 076630818f
1 changed files with 3 additions and 4 deletions

View File

@ -58,7 +58,6 @@
import java.util.Arrays;
import java.util.Iterator;
import junit.framework.Assert;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
@ -75,7 +74,7 @@
* @author Holger Krauth
* @author <a href="hps@intermeta.de">Henning P. Schmiedehausen</a>
* @author Phil Steitz
* @version $Id: StringUtilsTest.java,v 1.45 2003/08/13 21:32:27 ggregory Exp $
* @version $Id: StringUtilsTest.java,v 1.46 2003/08/13 23:08:06 scolebourne Exp $
*/
public class StringUtilsTest extends TestCase {
@ -975,8 +974,8 @@ public void testGetLevenshteinDistance_StringString() {
* A sanity check for {@link StringUtils.EMPTY}.
*/
public void testEMPTY() {
Assert.assertNotNull(StringUtils.EMPTY);
Assert.assertEquals("", StringUtils.EMPTY);
assertNotNull(StringUtils.EMPTY);
assertEquals("", StringUtils.EMPTY);
}
}