@Test
public void testEvalMethod() throws ScriptException {
Method method = ClassUtils.getMethod(JavaScriptUtilsTest.class, "execute", (Class<?>[]) null);
ScriptEngineManager manager = new ScriptEngineManager();
ScriptEngine engine = manager.getEngineByName("js");
JavaScript script = method.getAnnotation(JavaScript.class);
assertNull(engine.eval(script.value()));
}