()
| 102 | } |
| 103 | |
| 104 | @Test |
| 105 | public void testCeil2() |
| 106 | { |
| 107 | final PJEP jep = new PJEP(); |
| 108 | |
| 109 | jep.parseExpression("ceil(-5.7)"); |
| 110 | final double value = jep.getValue(); |
| 111 | |
| 112 | assertEquals(-5.0, value, 0.001, "ceil"); |
| 113 | } |
| 114 | |
| 115 | @Test |
| 116 | public void testIf() |
nothing calls this directly
no test coverage detected