// Created by plusminus on 01:03:19 - 28.01.2009 package org.androad.util; import org.junit.Assert; import org.junit.Test; public class CapitalizerTest { // =========================================================== // Constants // =========================================================== // =========================================================== // Fields // =========================================================== // =========================================================== // Constructors // =========================================================== // =========================================================== // Getter & Setter // =========================================================== // =========================================================== // Methods from SuperClass/Interfaces // =========================================================== // =========================================================== // Methods // =========================================================== @Test public void testCapitalizeAllWords() throws Exception{ Assert.assertEquals("Hello World", Capitalizer.capitalizeAllWords("hello woRLd")); } // =========================================================== // Inner and Anonymous Classes // =========================================================== }