()
| 58 | } |
| 59 | |
| 60 | @Test |
| 61 | public void testMax2() |
| 62 | { |
| 63 | final PJEP jep = new PJEP(); |
| 64 | |
| 65 | jep.parseExpression( |
| 66 | "max(max(var(\"BL=Wizard\")+var(\"CL=Wizard\"),var(\"BL=Sorcerer\")+var(\"CL=Sorcerer\"))," |
| 67 | + "var(\"BL=Cleric\")+var(\"CL=Cleric\"))"); |
| 68 | assertFalse(jep.hasError()); |
| 69 | } |
| 70 | |
| 71 | @Test |
| 72 | public void testFloor1() |
nothing calls this directly
no test coverage detected