It seems that there is no support for c# dynamics. Can this be confirmed?
When I run the test below, I get the error "
Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: 'string' does not contain a definition for 'Should'".
ViewBag is the dynamic field.
[TestMethod]
public void Index()
{
var controller = new HomeController();
var result = controller.Index() as ViewResult;
result.ViewBag.Message.Should().Be("Welcome to ASP.NET MVC!");
}