Something I keep having to look up is testing MVC (5) responses. There are several types of responses you can return on a MVC method: Plain ol’ object. IHttpActionResult. HttpResponseMessage. Plain ol’ object Returning an object means that it will be converted to the format in the Request (e.g. JSON, XML). However, you have no…