Package org.boris.expr.function.excel

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


        CELL c = new CELL();
        fail("CELL not implemented");
    }

    public void testERRORTYPE() throws Exception {
        ERRORTYPE e = new ERRORTYPE();
        assertEquals(eval(e, ExprError.NULL), 1);
        assertEquals(eval(e, ExprError.DIV0), 2);
        assertEquals(eval(e, ExprError.VALUE), 3);
        assertEquals(eval(e, ExprError.VALUE), 3);
        assertEquals(eval(e, "asdf"), ExprError.NA);
View Full Code Here

TOP

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

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.