TestBase-Mvc 3.0.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package TestBase-Mvc --version 3.0.4
NuGet\Install-Package TestBase-Mvc -Version 3.0.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TestBase-Mvc" Version="3.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TestBase-Mvc --version 3.0.4
#r "nuget: TestBase-Mvc, 3.0.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TestBase-Mvc as a Cake Addin
#addin nuget:?package=TestBase-Mvc&version=3.0.4

// Install TestBase-Mvc as a Cake Tool
#tool nuget:?package=TestBase-Mvc&version=3.0.4

*TestBase* gets you off to a flying start when unit testing projects with dependencies.
TestBase-Mvc adds a rich extensible set of fluent assertions for verifying Mvc ActionResults and for easy setup of ControllerContext and HttpContext for both Mvc and WebApi
TestBase.Shoulds
-------------------
Chainable fluent assertions get you to the point concisely
ControllerUnderTest.Action()
 .ShouldbeViewResult()
 .ShouldHaveModel<TModel>()
 .ShouldEqualByValue(expected)
ControllerUnderTest.Action()
 .ShouldBeRedirectToRouteResult()
 .ShouldHaveRouteValue("expectedKey", [Optional] "expectedValue");

ShouldHaveViewDataContaining(), ShouldBeJsonResult() etc.

TestBase
----------
Controller extensions to fake the http request & context. By injecting the RegisterRoutes method of your
MvcApplication, you can use and test Controller.Url with your application's configured routes.

ControllerUnderTest
 .WithHttpContextAndRoutes(
   [Optional] Action<RouteCollection> mvcApplicationRoutesRegistration,
   [optional] string requestUrl,
   [Optional] string query = "",
   [Optional] string appVirtualPath = "/",
   [Optional] HttpApplication applicationInstance)

ApiControllerUnderTest.WithWebApiHttpContext<T>(
   HttpMethod httpMethod,
   [Optional] string requestUri,
   [Optional] string routeTemplate)

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.1.4.3 3,777 11/20/2018
4.0.0 1,463 11/16/2018
3.1.0 1,967 7/24/2016
3.0.8.5 1,722 7/23/2016
3.0.8.3 1,722 4/14/2016
3.0.8.2 1,730 3/31/2016
3.0.8.1 1,718 3/30/2016
3.0.8 1,747 3/29/2016
3.0.7.6 1,696 3/14/2016
3.0.7.5 1,705 3/10/2016
3.0.7.4 1,813 2/11/2016
3.0.7.3 1,689 1/29/2016
3.0.7.2 1,692 1/28/2016
3.0.7.1 1,710 1/27/2016
3.0.7 1,741 1/27/2016
3.0.6.2 1,666 1/27/2016
3.0.6.1 1,700 1/26/2016
3.0.5 2,036 1/15/2016
3.0.4 1,820 1/13/2016
3.0.3 1,737 12/28/2015
3.0.2 3,843 12/27/2013
3.0.1.1 1,803 12/23/2013
3.0.1 1,939 11/28/2013
2.0.5 1,925 11/28/2013
2.0.4.1 1,832 11/12/2013
2.0.4 1,848 11/12/2013
2.0.3.1 1,836 11/8/2013
2.0.3 1,920 11/7/2013
2.0.2 1,908 11/7/2013
2.0.1 1,871 11/1/2013
1.0.4 1,828 10/31/2013
1.0.3 1,849 10/23/2013

Version 1. Unpolished but in use for over a year