Package org.boris.expr.function.excel

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


        assertEquals(eval(n, false), 0.);
        assertException("n(234,2)");
    }

    public void testNA() throws Exception {
        NA n = new NA();
        assertEquals(eval(n), ExprError.NA);
        assertException("na(1)");
        assertResult("na()", ExprError.NA);
    }
View Full Code Here

TOP

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

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.