Examples of EXACT


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

        DOLLAR d = new DOLLAR();
        fail("DOLLAR not implemented");
    }

    public void testEXACT() throws Exception {
        EXACT e = new EXACT();
        assertEquals(eval(e, "word", "Word"), false);
        assertEquals(eval(e, "word", "word"), true);
        assertEquals(eval(e, "1.2", 1.2), true);
        assertEquals(eval(e, ExprMissing.MISSING, ExprMissing.MISSING), true);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.