Add regression tests to the round Expression function

This commit is contained in:
Alexander Brandes 2023-05-21 09:51:59 +02:00
parent 4c0b535e6e
commit 2bdc925b0f
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C

View File

@ -449,4 +449,14 @@ class ExpressionTest extends BaseExpressionTest {
assertTrue(e.getMessage().contains("Calculations exceeded time limit"));
}
@Test
public void testRound() {
checkTestCase("round(1.3)", 1);
checkTestCase("round(0.9)", 1);
checkTestCase("round(-1.1)", -1);
checkTestCase("round(-0.9)", -1);
checkTestCase("round(1.5)", 2);
checkTestCase("round(-1.5)", -1);
}
}