*/
public class TestCeilingNode extends TestValueNodeAbstract<CeilingNode, INode> {
@Override
public void testCalc() {
INode node = getInstance(getA(0));
ValueNode<Double> res = node.calc(null);
assertTrue(res.getValue().compareTo(Math.ceil(1)) == 0);
node = getInstance(getA(1));
res = node.calc(null);
assertTrue(res.getValue().compareTo(Math.ceil(-1)) == 0);
node = getInstance(getA(2));
res = node.calc(null);
assertTrue(res.getValue().compareTo(Math.ceil(0)) == 0);
node = getInstance(getA(3));
ValueNode<Double> res2 = node.calc(null);
assertTrue(res2.getValue().compareTo(Math.ceil(1.)) == 0);
node = getInstance(getA(4));
res2 = node.calc(null);
assertTrue(res2.getValue().compareTo(Math.ceil(-1.)) == 0);
node = getInstance(getA(5));
res2 = node.calc(null);
assertTrue(res2.getValue().compareTo(Math.ceil(0.)) == 0);
node =
getInstance((new MultNode(new ValueNode<>(2), new ValueNode<>(-2.))));
res2 = node.calc(null);
assertTrue(res2.getValue().compareTo(Math.ceil(-4.)) == 0);
}