Package org.boris.expr.function.excel

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


        assertEquals(eval(l, ""), 0.);
        assertEquals(eval(l, "���One��"), 8.);
    }

    public void testLOWER() throws Exception {
        LOWER l = new LOWER();
        assertEquals(eval(l, "ASDF"), "asdf");
        assertEquals(eval(l, true), "true");
        assertEquals(eval(l, 1), "1");
        assertException("lower(1,1)");
        assertResult("lower({1,2})", ExprError.VALUE);
View Full Code Here

TOP

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

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.