/** Build a new fake request corresponding to a given route call */
 public static FakeRequest fakeRequest(Call call) {
   return fakeRequest(call.method(), call.url());
 }
Exemple #2
0
 /** Build a new fake request corresponding to a given route call */
 public static RequestBuilder fakeRequest(Call call) {
   return fakeRequest(call.method(), call.url());
 }