CORREL c = new CORREL();
fail("CORREL not implemented");
}
public void testCOUNT() throws Exception {
COUNT c = new COUNT();
assertEquals(eval(c, 1, 2, 3, "asdf", true), 3);
assertEquals(eval(c, (Object) null, ExprMissing.MISSING), 0);
assertEquals(eval(c, 1.2, -1.2), 2);
}