All Downloads are FREE. Search and download functionalities are using the official Maven repository.

test.com.generationjava.lang.StringWTest Maven / Gradle / Ivy

There is a newer version: 3.1
Show 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