()
| 91 | } |
| 92 | |
| 93 | @Test |
| 94 | public void testCeil1() |
| 95 | { |
| 96 | final PJEP jep = new PJEP(); |
| 97 | |
| 98 | jep.parseExpression("ceil(5.7)"); |
| 99 | final double value = jep.getValue(); |
| 100 | |
| 101 | assertEquals(6.0, value, 0.001, "ceil"); |
| 102 | } |
| 103 | |
| 104 | @Test |
| 105 | public void testCeil2() |
nothing calls this directly
no test coverage detected