MvcRouteUnitTester 0.9.2

dotnet add package MvcRouteUnitTester --version 0.9.2
                    
NuGet\Install-Package MvcRouteUnitTester -Version 0.9.2
                    
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="MvcRouteUnitTester" Version="0.9.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MvcRouteUnitTester" Version="0.9.2" />
                    
Directory.Packages.props
<PackageReference Include="MvcRouteUnitTester" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MvcRouteUnitTester --version 0.9.2
                    
#r "nuget: MvcRouteUnitTester, 0.9.2"
                    
#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.
#addin nuget:?package=MvcRouteUnitTester&version=0.9.2
                    
Install MvcRouteUnitTester as a Cake Addin
#tool nuget:?package=MvcRouteUnitTester&version=0.9.2
                    
Install MvcRouteUnitTester as a Cake Tool

MVC Route Unit Tester provides convenient, easy to use methods that let you unit test the route table in your ASP.NET MVC application, including Area routes. Unlike many libraries, this lets you test routes both ways -- both incoming and outgoing. You can specify an incoming request and make one of several assertions about the outcome; such that the request matches a given route, matches no routes, or that it is ignored by the routing system. You can also specify route data and assert that a given URL will be generated by your application. Works with any unit testing library you choose, such as MSTest, NUnit, xUnit, mbUnit, and others. See the Project site for usage details.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
    • Moq (>= 4.0.10827)

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
0.9.2 169,844 4/27/2012
0.9.1 3,322 1/12/2012
0.9.0.1 1,685 12/8/2011
0.9.0 1,628 12/5/2011
0.8.5.2 1,695 12/1/2011
0.8.5.1 1,603 11/29/2011
0.8.5 1,672 11/28/2011
0.8.4 1,626 11/28/2011
0.8.3.3 1,624 11/26/2011
0.8.3.1 1,594 11/26/2011
0.8.2 1,617 11/25/2011
0.8.1 1,644 11/21/2011
0.8.0.1 1,675 11/20/2011

0.9.2.0: Exposes the HTTP context on the RouteInfo and RequestInfo objects. This provides an extensibility point which allows the user to customize the HTTP context used for tests.