Package org.boris.expr.function.excel

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


import org.boris.expr.function.excel.NOT;

public class ExcelLogicalFunctionsTest extends TH
{
    public void testAND() throws Exception {
        AND a = new AND();
        assertEquals(TH.eval(a, 3, true, 3.4), true);
        assertEquals(TH.eval(a, 3, false, 3.4), false);
        TH.assertException(a);
        TH.assertException(a, "asdf");
    }
View Full Code Here

TOP

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

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.