Package org.boris.expr.function.excel

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


            assertEquals(eval(e, d), Math.exp(d));
        }
    }

    public void testFACT() throws Exception {
        FACT f = new FACT();
        assertEquals(eval(f, 0), 1.);
        assertEquals(eval(f, 1), 1.);
        assertEquals(eval(f, 2), 2.);
        assertEquals(eval(f, 3), 6.);
        assertEquals(eval(f, 5), 120.);
View Full Code Here

TOP

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

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.