diff --git a/tests/cql/CqlArithmeticFunctionsTest.xml b/tests/cql/CqlArithmeticFunctionsTest.xml index 175c581..b3c5124 100644 --- a/tests/cql/CqlArithmeticFunctionsTest.xml +++ b/tests/cql/CqlArithmeticFunctionsTest.xml @@ -100,6 +100,46 @@ Ceiling(1) 1 + + Ceiling(2147483647) + 2147483647 + + + Ceiling(2147483647.0) + 2147483647 + + + Ceiling(2147483647.2) + null + + + Ceiling(2147483648) + null + + + Ceiling(2147483648.2) + null + + + Ceiling(-2147483648) + -2147483648 + + + Ceiling(-2147483648.0) + -2147483648 + + + Ceiling(-2147483648.2) + -2147483648 + + + Ceiling(-2147483649) + null + + + Ceiling(-2147483649.2) + null + @@ -202,6 +242,46 @@ Floor(2) 2 + + Floor(2147483647) + 2147483647 + + + Floor(2147483647.0) + 2147483647 + + + Floor(2147483647.2) + 2147483647 + + + Floor(2147483648) + null + + + Floor(2147483648.2) + null + + + Floor(-2147483648) + -2147483648 + + + Floor(-2147483648.0) + -2147483648 + + + Floor(-2147483648.2) + -2147483648 + + + Floor(-2147483649) + null + + + Floor(-2147483649.2) + null +