Package org.boris.expr.function.excel

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


        assertResult("IF(1=1,0,1)", 0);
        assertResult("IF(TRUE,\"Y\",\"N\")", "Y");
    }

    public void testNOT() throws Exception {
        NOT n = new NOT();
        assertEquals(eval(n, true), false);
        assertEquals(eval(n, 1), false);
        assertEquals(eval(n, 0), true);
        assertEquals(eval(n, -10.3), false);
        assertException("not(123,23)");
View Full Code Here

TOP

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

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.