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。*