Contents tagged with testing
Controller dependency missing on test? Try MvcContrib TestControllerBuilder
Ever faced this situation: You have nice and easy controller method, say:
public ActionResult Demonstrate(string id) {
this.Repository.Demonstrate(id);
string url = … more