Package org.boris.expr.function.excel

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


        DEGREES d = new DEGREES();
        assertEquals(eval(d, Math.PI), 180.);
    }

    public void testEVEN() throws Exception {
        EVEN e = new EVEN();
        assertEquals(eval(e, -10.1), -12.);
        assertEquals(eval(e, -9.9), -10.);
        assertEquals(eval(e, -8.01), -10.);
        assertEquals(eval(e, -7.5), -8.);
        assertEquals(eval(e, -6), -6.);
View Full Code Here

TOP

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

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.