T在玩Java时尝试了很多方法来伪造对我的控制器的发布请求,但对我没有任何帮助。

callAction(controllers.routes.ref.MyController.myFunction(), fakeRequest().withHeader("Content-Type", "application/json").withJsonBody(json));


在eclipse中总是说the method fakeRequest() is undefinded

最佳答案

添加导入静态play.test.Helpers。*

07-25 22:27