Package org.boris.expr.function.excel

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


        assertException("na(1)");
        assertResult("na()", ExprError.NA);
    }

    public void testTYPE() throws Exception {
        TYPE t = new TYPE();
        assertEquals(eval(t, "asdf"), 2.);
        assertEquals(eval(t, 2), 1.);
        assertEquals(eval(t, ExprError.VALUE), 16.);
        assertEquals(eval(t, toArray(1, 1)), 64.);
    }
View Full Code Here

TOP

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

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.