在 grails 动作中,我有简单的代码
def myAction={ render("some string" as JSON)}
现在我想在 Junit 中访问和测试这个渲染的 JSON。我在测试中也尝试了 controller.renderArgs、controller.renderArgs.JSON.as
def ret=controller.myAction();ret.JSON
还有一些可能的其他方式..但无法捕获。有没有办法在 JUNIT grails 中捕获呈现 JSON 对象..??
提前致谢..