in my unit test, the ViewResult.ViewName property is always empty when i use the action name for the view:

return View(model);
or
return View();

Is that by design?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Yes it is by design:

protected internal ViewResult View()
{
    return this.View(null, null, null);
}

Checkout MVCContrib.TestHelper for better syntax:

// act
var actual = controller.Index();

// assert
actual.AssertViewRendered();
link|improve this answer
Do you know where does it get my viewname from? – Michel Jun 1 '10 at 8:06
From the name of the action that is being executed. – Darin Dimitrov Jun 1 '10 at 8:13
feedback

Looks like it is indeed:

protected internal ViewResult View()
{
    return this.View(null, null, null);
}

protected internal virtual ViewResult View(string viewName, 
    string masterName, object model)
{
    if (model != null)
    {
        base.ViewData.Model = model;
    }
    ViewResult result = new ViewResult();
    result.ViewName = viewName;
    result.MasterName = masterName;
    result.ViewData = base.ViewData;
    result.TempData = base.TempData;
    return result;
}
link|improve this answer
Huh? then where does it get my viewname from? – Michel May 26 '10 at 12:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.