()
| 47 | } |
| 48 | |
| 49 | @Test |
| 50 | public void testMax1() |
| 51 | { |
| 52 | final PJEP jep = new PJEP(); |
| 53 | |
| 54 | jep.parseExpression("max(5,8,1)"); |
| 55 | final double value = jep.getValue(); |
| 56 | |
| 57 | assertEquals(8.0, value, 0.001, "max"); |
| 58 | } |
| 59 | |
| 60 | @Test |
| 61 | public void testMax2() |
nothing calls this directly
no test coverage detected