()
| 157 | } |
| 158 | |
| 159 | @Test |
| 160 | public void testIf5() |
| 161 | { |
| 162 | final PJEP jep = new PJEP(); |
| 163 | |
| 164 | jep.parseExpression("if (1, 5, -5)"); |
| 165 | final double value = jep.getValue(); |
| 166 | |
| 167 | assertEquals(5, value, 0.001, "if"); |
| 168 | } |
| 169 | |
| 170 | @Test |
| 171 | public void testIf6() |
nothing calls this directly
no test coverage detected