PreviousNext

Testing ASP.NET Core MVC Controllers: Getting Started

by bill-s, 2017-06-23T20:59:38.000Z

When writing ASP.NET Core MVC web applications, you may want to test that controller actions behave in the expected way, for example that the action returns the correct result type (e.g. a ViewResult) or that the action behaves as expected when the model state is invalid.

Read More