()
| 80 | } |
| 81 | |
| 82 | @Test |
| 83 | public void testFloor2() |
| 84 | { |
| 85 | final PJEP jep = new PJEP(); |
| 86 | |
| 87 | jep.parseExpression("floor(-5.7)"); |
| 88 | final double value = jep.getValue(); |
| 89 | |
| 90 | assertEquals(-6.0, value, 0.001, "floor"); |
| 91 | } |
| 92 | |
| 93 | @Test |
| 94 | public void testCeil1() |
nothing calls this directly
no test coverage detected