Package org.boris.expr.function.excel

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


    public void testCLEAN() throws Exception {
        assertResult("CLEAN(CHAR(7)&\"text\"&CHAR(7))", "text");
    }

    public void testCODE() throws Exception {
        CODE c = new CODE();
        assertEquals(eval(c, true), 84);
        assertEquals(eval(c, false), 70);
        assertEquals(eval(c, 1), 49);
        assertEquals(eval(c, "asd"), 97);
        assertEquals(eval(c, "%$"), 37);
View Full Code Here

TOP

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

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.