()
| 86 | } |
| 87 | |
| 88 | @Test |
| 89 | public void testArgv() throws ScriptException { |
| 90 | engine.put( ScriptEngine.ARGV, new String[]{ "one", "two" }); |
| 91 | Object result = engine.eval( "dynjs.argv[1]" ); |
| 92 | assertThat( result ).isEqualTo( "two" ); |
| 93 | } |
| 94 | |
| 95 | @Test |
| 96 | public void testInvokeMethod() throws ScriptException, NoSuchMethodException { |