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

test.com.generationjava.util.StringJoinerTest Maven / Gradle / Ivy

Go to download

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.util;

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import junit.textui.TestRunner;

public class StringJoinerTest extends TestCase {

    public StringJoinerTest(String name) {
        super(name);
    }

    //-----------------------------------------------------------------------
    // To test: 
    //   StringJoiner(String, String) -> join(String[])

    public void testJoin() {
        StringJoiner joiner = new StringJoiner("??", "?");
        assertEquals("onetwo", joiner.join(new String[] { "one", "two" }));
        assertEquals("12", joiner.join(new String[] { "1", "2" }));
        assertEquals("unodos", joiner.join(new String[] { "uno", "dos" }));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy