mirror of
https://github.com/EngineHub/WorldEdit.git
synced 2025-04-12 14:40:42 +08:00
Add regression tests to the round
Expression function
This commit is contained in:
parent
237ebc1016
commit
bd9af40e83
@ -427,4 +427,13 @@ 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);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user