()
| 36 | public class PJepTest extends AbstractCharacterTestCase |
| 37 | { |
| 38 | @Test |
| 39 | public void testMin() |
| 40 | { |
| 41 | final PJEP jep = new PJEP(); |
| 42 | |
| 43 | jep.parseExpression("min(5,8,1)"); |
| 44 | final double value = jep.getValue(); |
| 45 | |
| 46 | assertEquals(1.0, value, 0.001, "min"); |
| 47 | } |
| 48 | |
| 49 | @Test |
| 50 | public void testMax1() |
nothing calls this directly
no test coverage detected