()
| 31 | } |
| 32 | |
| 33 | public void testMeWithSymbolAndObject() throws CompilationFailedException { |
| 34 | Object result = Eval.me("x", Integer.valueOf(10), "x"); |
| 35 | assertEquals("10", result.toString()); |
| 36 | } |
| 37 | |
| 38 | public void testX() throws CompilationFailedException { |
| 39 | Object result = Eval.x(Integer.valueOf(10), "x"); |
nothing calls this directly
no test coverage detected