import org.boris.expr.function.excel.TRUNC;
public class ExcelMathAndTrigFunctionsTest extends TH
{
public void testABS() throws Exception {
ABS a = new ABS();
for (int i = 0; i < 100; i++) {
double d = Math.random() * 1000 - Math.random() * 1000;
assertEquals("ABS not working", TH.eval(a, d), Math.abs(d));
}
}