Examples of ISTEXT


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

        assertResult("ISREF(A1)", true);
        assertResult("ISREF(1)", false);
    }

    public void testISTEXT() throws Exception {
        ISTEXT i = new ISTEXT();
        assertEquals(eval(i, ""), true);
        assertEquals(eval(i, 1), false);
        assertEquals(eval(i, 1.), false);
        assertEquals(eval(i, false), false);
        assertEquals(eval(i, toArray("asdF")), false);
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.