Package org.boris.expr.function.excel

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


        assertEquals(eval(i, false), false);
        assertEquals(eval(i, toArray("asdF")), false);
    }

    public void testN() throws Exception {
        N n = new N();
        assertEquals(eval(n, 1.0), 1.);
        assertEquals(eval(n, "asf"), 0.);
        assertEquals(eval(n, true), 1.0);
        assertEquals(eval(n, false), 0.);
        assertException("n(234,2)");
View Full Code Here

TOP

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

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.