* The <tt>Content-Type</tt> header of the request is set to <tt>text/plain</tt>.
* @param text the text
* @return the Fake Request
*/
public FakeRequest withTextBody(String text) {
return withAnyContent(new AnyContentAsText(text), "text/plain", this.fake.getMethod());
}