Package org.boris.expr.function.excel

Examples of org.boris.expr.function.excel.PROPER


        assertEquals(eval(m, "Fluid Flow", 0, 5), ExprError.VALUE);
        assertEquals(eval(m, "Fluid Flow", 4, -2), ExprError.VALUE);
    }

    public void testPROPER() throws Exception {
        PROPER p = new PROPER();
        assertEquals(eval(p, "this is a TITLE"), "This Is A Title");
        assertEquals(eval(p, "2-cent\'s worth"), "2-Cent\'S Worth");
        assertEquals(eval(p, "76BudGet"), "76Budget");
    }
View Full Code Here

TOP

Related Classes of org.boris.expr.function.excel.PROPER

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.