私のコントローラーには次のような機能があります。
def go() {
...
redirect(action: 'someOtherAction')
}
私の統合テストでは、コントローラーが本来すべきと思っていたことを実行したことをどのように断言できますか?
assertEquals 'someOtherAction', controller.????
これらは両方とも null 値を返します。
controller.response.redirectedUrl
controller.modelAndView.viewName
編集:
応答インスタンスのキャプチャ: