import org.boris.expr.function.excel.ZTEST;
public class ExcelStatisticalFunctionsTest extends TH
{
public void testAVEDEV() throws Exception {
AVEDEV a = new AVEDEV();
assertEquals(TH.eval(a, 1, 2, 3, 4, 5), 1.2);
assertEquals(eval(a, 4, 5, 6, 7, 5, 4, 3), 1.02040816326531);
}