我有一个调用 web 服务的 groovy 脚本。我想检查 web 服务调用是否成功使用 Junit 测试用例运行 groovy 脚本。请帮忙
问问题
1852 次
1 回答
-1
您需要在测试代码中嵌入 Groovy 解释器:
// call groovy expressions from Java code
Binding binding = new Binding();
binding.setVariable("foo", new Integer(2));
GroovyShell shell = new GroovyShell(binding);
Object value = shell.evaluate("println 'Hello World!'; x = 123; return foo * 10");
assert value.equals(new Integer(20));
assert binding.getVariable("x").equals(new Integer(123));
有关详细信息,请参阅文档如何嵌入 Groovy
于 2013-07-16T10:36:00.870 回答