test.com.generationjava.lang.StringWTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gj-core Show documentation
Show all versions of gj-core Show documentation
A re-usable library of Java classes. Originally stand-alone, many of the classes have since gone into various parts of the Jakarta Commons project, and thus this package contains various dependencies.
The newest version!
package com.generationjava.lang;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import junit.textui.TestRunner;
public class StringWTest extends TestCase {
public StringWTest(String name) {
super(name);
}
//-----------------------------------------------------------------------
// To test: join(Object[], String, String, String)
public void testJoin() {
assertEquals("pre1,2,3,4post", StringW.join( new String[] { "1", "2", "3", "4" }, ",", "pre", "post") );
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy