()
| 26 | */ |
| 27 | public class EvalTest extends TestCase { |
| 28 | public void testMeSimple() throws CompilationFailedException { |
| 29 | Object result = Eval.me("10"); |
| 30 | assertEquals("10", result.toString()); |
| 31 | } |
| 32 | |
| 33 | public void testMeWithSymbolAndObject() throws CompilationFailedException { |
| 34 | Object result = Eval.me("x", Integer.valueOf(10), "x"); |
nothing calls this directly
no test coverage detected