Microsoft.AspNetCore.Mvc.Testing
10.0.0
Prefix Reserved
dotnet add package Microsoft.AspNetCore.Mvc.Testing --version 10.0.0
NuGet\Install-Package Microsoft.AspNetCore.Mvc.Testing -Version 10.0.0
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" />
paket add Microsoft.AspNetCore.Mvc.Testing --version 10.0.0
#r "nuget: Microsoft.AspNetCore.Mvc.Testing, 10.0.0"
#:package Microsoft.AspNetCore.Mvc.Testing@10.0.0
#addin nuget:?package=Microsoft.AspNetCore.Mvc.Testing&version=10.0.0
#tool nuget:?package=Microsoft.AspNetCore.Mvc.Testing&version=10.0.0
About
Microsoft.AspNetCore.Mvc.Testing provides support for writing integration tests for ASP.NET Core apps that utilize MVC or Minimal APIs.
Key Features
- Copies the dependencies file (
.deps.json) from the System Under Test (SUT) into the test project'sbindirectory - Sets the content root to the SUT's project root so that static files are found during test execution
- Provides the
WebApplicationFactoryclass to streamline bootstrapping the SUT withTestServer
How to Use
To use Microsoft.AspNetCore.Mvc.Testing, follow these steps:
Installation
To install the package, run the following command from the directory containing the test project file:
dotnet add package Microsoft.AspNetCore.Mvc.Testing
Configuration
To configure the test app, follow these steps:
- Specify the Web SDK in the test project file (
<Project Sdk="Microsoft.NET.Sdk.Web">). - Add references to the following packages:
xunitxunit.runner.visualstudioMicrosoft.NET.Test.Sdk
- Add a test class to the test project:
public class BasicTests : IClassFixture<WebApplicationFactory<Program>> { private readonly WebApplicationFactory<Program> _factory; public BasicTests(WebApplicationFactory<Program> factory) { _factory = factory; } [Theory] [InlineData("/")] [InlineData("/Index")] [InlineData("/About")] [InlineData("/Privacy")] [InlineData("/Contact")] public async Task Get_EndpointsReturnSuccessAndCorrectContentType(string url) { // Arrange var client = _factory.CreateClient(); // Act var response = await client.GetAsync(url); // Assert response.EnsureSuccessStatusCode(); // Status Code 200-299 Assert.Equal("text/html; charset=utf-8", response.Content.Headers.ContentType.ToString()); } }
Additional Documentation
For additional documentation and examples, refer to the official documentation on integration testing in ASP.NET Core.
Feedback & Contributing
Microsoft.AspNetCore.Mvc.Testing is released as open-source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Microsoft.AspNetCore.TestHost (>= 10.0.0)
- Microsoft.Extensions.DependencyModel (>= 10.0.0)
- Microsoft.Extensions.Hosting (>= 10.0.0)
NuGet packages (257)
Showing the top 5 NuGet packages that depend on Microsoft.AspNetCore.Mvc.Testing:
| Package | Downloads |
|---|---|
|
Alba
Supercharged integration testing for ASP.NET Core HTTP endpoints |
|
|
Ardalis.HttpClientTestExtensions
Helpful extension methods to use when testing APIs in Functional Tests with xUnit. |
|
|
Reo.Core.IntegrationTesting
Package Description |
|
|
Volo.Abp.AspNetCore.TestBase
Package Description |
|
|
FastEndpoints.Testing
Integration/End-To-End testing helper library for FastEndpoints |
GitHub repositories (311)
Showing the top 20 popular GitHub repositories that depend on Microsoft.AspNetCore.Mvc.Testing:
| Repository | Stars |
|---|---|
|
jellyfin/jellyfin
The Free Software Media System - Server Backend & API
|
|
|
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
|
|
|
ardalis/CleanArchitecture
Clean Architecture Solution Template: A proven Clean Architecture Template for ASP.NET Core 10
|
|
|
bitwarden/server
Bitwarden infrastructure/backend (API, database, Docker, etc).
|
|
|
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
|
|
|
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
|
|
|
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
|
|
|
dotnet-architecture/eShopOnWeb
Sample ASP.NET Core 8.0 reference application, now community supported: https://github.com/NimblePros/eShopOnWeb
|
|
|
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 10, 9, 8.0, 7.0, 6.0, 5.0, 3.1, 2.2, and 2.1,projects you can use. Readme contains explanations on all projects.
|
|
|
dotnet/eShop
A reference .NET application implementing an eCommerce site
|
|
|
OrchardCMS/OrchardCore
Orchard Core is an open-source modular and multi-tenant application framework built with ASP.NET Core, and a content management system (CMS) built on top of that framework.
|
|
|
elsa-workflows/elsa-core
A .NET workflows library
|
|
|
quartznet/quartznet
Quartz Enterprise Scheduler .NET
|
|
|
graphql-dotnet/graphql-dotnet
GraphQL for .NET
|
|
|
Azure/azure-sdk-for-net
This repository is for active development of the Azure SDK for .NET. For consumers of the SDK we recommend visiting our public developer docs at https://learn.microsoft.com/dotnet/azure/ or our versioned developer docs at https://azure.github.io/azure-sdk-for-net.
|
|
|
FastEndpoints/FastEndpoints
A light-weight REST API development framework for ASP.NET 8 and newer.
|
|
|
kurrent-io/KurrentDB
KurrentDB is a database that's engineered for modern software applications and event-driven architectures. Its event-native design simplifies data modeling and preserves data integrity while the integrated streaming engine solves distributed messaging challenges and ensures data consistency.
|
|
|
domaindrivendev/Swashbuckle.AspNetCore
Swagger tools for documenting API's built on ASP.NET Core
|
|
|
jasontaylordev/NorthwindTraders
Northwind Traders is a sample application built using ASP.NET Core and Entity Framework Core.
|
|
|
umbraco/Umbraco-CMS
Umbraco is a free and open source .NET content management system helping you deliver delightful digital experiences.
|
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 10.0.0 | 126,704 | 11/11/2025 | |
| 10.0.0-rc.2.25502.107 | 43,751 | 10/14/2025 | |
| 10.0.0-rc.1.25451.107 | 53,637 | 9/9/2025 | |
| 10.0.0-preview.7.25380.108 | 24,984 | 8/12/2025 | |
| 10.0.0-preview.6.25358.103 | 5,737 | 7/15/2025 | |
| 10.0.0-preview.5.25277.114 | 8,907 | 6/6/2025 | |
| 10.0.0-preview.4.25258.110 | 5,214 | 5/12/2025 | |
| 10.0.0-preview.3.25172.1 | 3,567 | 4/10/2025 | |
| 10.0.0-preview.2.25164.1 | 3,131 | 3/18/2025 | |
| 10.0.0-preview.1.25120.3 | 110,602 | 2/25/2025 | |
| 9.0.11 | 78,181 | 11/11/2025 | |
| 9.0.10 | 969,921 | 10/14/2025 | |
| 9.0.9 | 1,504,135 | 9/9/2025 | |
| 9.0.8 | 1,573,454 | 8/5/2025 | |
| 9.0.7 | 1,168,338 | 7/8/2025 | |
| 9.0.6 | 1,427,948 | 6/10/2025 | |
| 9.0.5 | 1,454,410 | 5/13/2025 | |
| 9.0.4 | 1,933,227 | 4/8/2025 | |
| 9.0.3 | 1,602,504 | 3/11/2025 | |
| 9.0.2 | 1,584,920 | 2/11/2025 | |
| 9.0.1 | 1,610,120 | 1/14/2025 | |
| 9.0.0 | 3,262,943 | 11/12/2024 | |
| 9.0.0-rc.2.24474.3 | 53,591 | 10/8/2024 | |
| 9.0.0-rc.1.24452.1 | 27,557 | 9/10/2024 | |
| 9.0.0-preview.7.24406.2 | 9,565 | 8/13/2024 | |
| 9.0.0-preview.6.24328.4 | 11,906 | 7/9/2024 | |
| 9.0.0-preview.5.24306.11 | 4,670 | 6/11/2024 | |
| 9.0.0-preview.4.24267.6 | 3,145 | 5/21/2024 | |
| 9.0.0-preview.3.24172.13 | 70,835 | 4/11/2024 | |
| 9.0.0-preview.2.24128.4 | 5,068 | 3/12/2024 | |
| 9.0.0-preview.1.24081.5 | 26,176 | 2/13/2024 | |
| 8.0.22 | 79,814 | 11/11/2025 | |
| 8.0.21 | 567,147 | 10/14/2025 | |
| 8.0.20 | 842,981 | 9/9/2025 | |
| 8.0.19 | 1,541,191 | 8/4/2025 | |
| 8.0.18 | 810,073 | 7/8/2025 | |
| 8.0.17 | 1,321,035 | 6/10/2025 | |
| 8.0.16 | 1,210,580 | 5/13/2025 | |
| 8.0.15 | 1,927,704 | 4/8/2025 | |
| 8.0.14 | 1,985,530 | 3/11/2025 | |
| 8.0.13 | 2,233,446 | 2/11/2025 | |
| 8.0.12 | 2,135,541 | 1/14/2025 | |
| 8.0.11 | 5,635,788 | 11/12/2024 | |
| 8.0.10 | 7,503,358 | 10/8/2024 | |
| 8.0.8 | 8,487,174 | 8/13/2024 | |
| 8.0.7 | 6,124,616 | 7/9/2024 | |
| 8.0.6 | 5,091,949 | 5/28/2024 | |
| 8.0.5 | 2,336,801 | 5/14/2024 | |
| 8.0.4 | 6,065,047 | 4/9/2024 | |
| 8.0.3 | 3,809,523 | 3/12/2024 | |
| 8.0.2 | 3,503,527 | 2/13/2024 | |
| 8.0.1 | 3,900,150 | 1/9/2024 | |
| 8.0.0 | 6,079,537 | 11/14/2023 | |
| 8.0.0-rc.2.23480.2 | 58,522 | 10/10/2023 | |
| 8.0.0-rc.1.23421.29 | 60,800 | 9/12/2023 | |
| 8.0.0-preview.7.23375.9 | 11,021 | 8/8/2023 | |
| 8.0.0-preview.6.23329.11 | 28,252 | 7/11/2023 | |
| 8.0.0-preview.5.23302.2 | 12,942 | 6/13/2023 | |
| 8.0.0-preview.4.23260.4 | 264,605 | 5/16/2023 | |
| 8.0.0-preview.3.23177.8 | 3,804 | 4/11/2023 | |
| 8.0.0-preview.2.23153.2 | 2,161 | 3/14/2023 | |
| 8.0.0-preview.1.23112.2 | 41,114 | 2/21/2023 | |
| 7.0.20 | 577,204 | 5/28/2024 | |
| 7.0.19 | 89,036 | 5/14/2024 | |
| 7.0.18 | 197,621 | 4/9/2024 | |
| 7.0.17 | 403,759 | 3/12/2024 | |
| 7.0.16 | 446,047 | 2/13/2024 | |
| 7.0.15 | 579,575 | 1/9/2024 | |
| 7.0.14 | 984,346 | 11/14/2023 | |
| 7.0.13 | 2,296,083 | 10/24/2023 | |
| 7.0.12 | 732,369 | 10/10/2023 | |
| 7.0.11 | 3,427,753 | 9/12/2023 | |
| 7.0.10 | 1,452,733 | 8/8/2023 | |
| 7.0.9 | 1,258,284 | 7/11/2023 | |
| 7.0.8 | 927,740 | 6/22/2023 | |
| 7.0.7 | 503,506 | 6/13/2023 | |
| 7.0.5 | 3,048,883 | 4/11/2023 | |
| 7.0.4 | 1,673,712 | 3/14/2023 | |
| 7.0.3 | 1,545,851 | 2/14/2023 | |
| 7.0.2 | 1,522,885 | 1/10/2023 | |
| 7.0.1 | 882,670 | 12/13/2022 | |
| 7.0.0 | 2,991,813 | 11/7/2022 | |
| 7.0.0-rc.2.22476.2 | 68,199 | 10/11/2022 | |
| 7.0.0-rc.1.22427.2 | 22,816 | 9/14/2022 | |
| 7.0.0-preview.7.22376.6 | 7,887 | 8/9/2022 | |
| 7.0.0-preview.6.22330.3 | 2,650 | 7/12/2022 | |
| 7.0.0-preview.5.22303.8 | 9,524 | 6/14/2022 | |
| 7.0.0-preview.4.22251.1 | 2,277 | 5/10/2022 | |
| 7.0.0-preview.3.22178.4 | 1,366 | 4/13/2022 | |
| 7.0.0-preview.2.22153.2 | 1,165 | 3/14/2022 | |
| 7.0.0-preview.1.22109.13 | 5,230 | 2/17/2022 | |
| 6.0.36 | 1,442,652 | 11/12/2024 | |
| 6.0.35 | 242,307 | 10/8/2024 | |
| 6.0.33 | 1,269,293 | 8/13/2024 | |
| 6.0.32 | 327,966 | 7/9/2024 | |
| 6.0.31 | 471,877 | 5/28/2024 | |
| 6.0.30 | 163,521 | 5/14/2024 | |
| 6.0.29 | 712,535 | 4/9/2024 | |
| 6.0.28 | 431,258 | 3/12/2024 | |
| 6.0.27 | 648,844 | 2/13/2024 | |
| 6.0.26 | 917,623 | 1/9/2024 | |
| 6.0.25 | 1,706,238 | 11/14/2023 | |
| 6.0.24 | 848,828 | 10/24/2023 | |
| 6.0.23 | 611,886 | 10/10/2023 | |
| 6.0.22 | 996,565 | 9/12/2023 | |
| 6.0.21 | 1,368,723 | 8/8/2023 | |
| 6.0.20 | 1,281,390 | 7/11/2023 | |
| 6.0.19 | 760,826 | 6/22/2023 | |
| 6.0.18 | 505,361 | 6/13/2023 | |
| 6.0.16 | 2,582,523 | 4/11/2023 | |
| 6.0.15 | 1,445,896 | 3/14/2023 | |
| 6.0.14 | 1,803,139 | 2/14/2023 | |
| 6.0.13 | 2,319,610 | 1/10/2023 | |
| 6.0.12 | 2,519,881 | 12/13/2022 | |
| 6.0.11 | 2,850,614 | 11/7/2022 | |
| 6.0.10 | 4,344,903 | 10/11/2022 | |
| 6.0.9 | 3,284,712 | 9/13/2022 | |
| 6.0.8 | 4,240,564 | 8/9/2022 | |
| 6.0.7 | 3,530,541 | 7/12/2022 | |
| 6.0.6 | 2,619,690 | 6/14/2022 | |
| 6.0.5 | 3,228,733 | 5/10/2022 | |
| 6.0.4 | 3,019,513 | 4/11/2022 | |
| 6.0.3 | 3,190,067 | 3/8/2022 | |
| 6.0.2 | 3,117,394 | 2/8/2022 | |
| 6.0.1 | 4,495,705 | 12/14/2021 | |
| 6.0.0 | 5,270,149 | 11/8/2021 | |
| 6.0.0-rc.2.21480.10 | 206,083 | 10/12/2021 | |
| 6.0.0-rc.1.21452.15 | 173,637 | 9/14/2021 | |
| 6.0.0-preview.7.21378.6 | 7,469 | 8/10/2021 | |
| 6.0.0-preview.6.21355.2 | 4,565 | 7/14/2021 | |
| 6.0.0-preview.5.21301.17 | 3,336 | 6/15/2021 | |
| 6.0.0-preview.4.21253.5 | 6,706 | 5/24/2021 | |
| 6.0.0-preview.3.21201.13 | 5,057 | 4/8/2021 | |
| 6.0.0-preview.2.21154.6 | 1,054 | 3/11/2021 | |
| 6.0.0-preview.1.21103.6 | 1,124 | 2/12/2021 | |
| 5.0.17 | 738,420 | 5/10/2022 | |
| 5.0.16 | 113,387 | 4/11/2022 | |
| 5.0.15 | 218,371 | 3/8/2022 | |
| 5.0.14 | 216,329 | 2/8/2022 | |
| 5.0.13 | 510,161 | 12/14/2021 | |
| 5.0.12 | 617,188 | 11/7/2021 | |
| 5.0.11 | 1,060,207 | 10/12/2021 | |
| 5.0.10 | 1,075,357 | 9/14/2021 | |
| 5.0.9 | 1,195,291 | 8/10/2021 | |
| 5.0.8 | 937,592 | 7/13/2021 | |
| 5.0.7 | 1,214,964 | 6/8/2021 | |
| 5.0.6 | 958,149 | 5/11/2021 | |
| 5.0.5 | 1,397,579 | 4/6/2021 | |
| 5.0.4 | 839,215 | 3/9/2021 | |
| 5.0.3 | 1,001,839 | 2/9/2021 | |
| 5.0.2 | 948,725 | 1/12/2021 | |
| 5.0.1 | 591,750 | 12/8/2020 | |
| 5.0.0 | 1,772,485 | 11/9/2020 | |
| 5.0.0-rc.2.20475.17 | 15,203 | 10/13/2020 | |
| 5.0.0-rc.1.20451.17 | 9,272 | 9/14/2020 | |
| 5.0.0-preview.8.20414.8 | 9,344 | 8/25/2020 | |
| 5.0.0-preview.7.20365.19 | 3,893 | 7/21/2020 | |
| 5.0.0-preview.6.20312.15 | 2,238 | 6/25/2020 | |
| 5.0.0-preview.5.20279.2 | 1,066 | 6/10/2020 | |
| 5.0.0-preview.4.20257.10 | 1,692 | 5/18/2020 | |
| 5.0.0-preview.3.20215.14 | 2,177 | 4/23/2020 | |
| 5.0.0-preview.2.20167.3 | 1,050 | 4/2/2020 | |
| 5.0.0-preview.1.20124.5 | 1,310 | 3/16/2020 | |
| 3.1.32 | 514,918 | 12/13/2022 | |
| 3.1.31 | 102,715 | 11/8/2022 | |
| 3.1.30 | 793,768 | 10/11/2022 | |
| 3.1.29 | 77,062 | 9/13/2022 | |
| 3.1.28 | 123,320 | 8/9/2022 | |
| 3.1.27 | 112,343 | 7/12/2022 | |
| 3.1.26 | 127,651 | 6/14/2022 | |
| 3.1.25 | 144,236 | 5/10/2022 | |
| 3.1.24 | 146,204 | 4/11/2022 | |
| 3.1.23 | 210,217 | 3/8/2022 | |
| 3.1.22 | 620,560 | 12/14/2021 | |
| 3.1.21 | 448,658 | 11/7/2021 | |
| 3.1.20 | 411,640 | 10/11/2021 | |
| 3.1.19 | 277,643 | 9/14/2021 | |
| 3.1.18 | 813,499 | 8/10/2021 | |
| 3.1.17 | 576,244 | 7/13/2021 | |
| 3.1.16 | 502,038 | 6/8/2021 | |
| 3.1.15 | 448,666 | 5/11/2021 | |
| 3.1.14 | 787,578 | 4/6/2021 | |
| 3.1.13 | 922,946 | 3/9/2021 | |
| 3.1.12 | 558,539 | 2/9/2021 | |
| 3.1.11 | 718,393 | 1/12/2021 | |
| 3.1.10 | 2,183,984 | 11/9/2020 | |
| 3.1.9 | 2,357,278 | 10/13/2020 | |
| 3.1.8 | 2,058,517 | 9/8/2020 | |
| 3.1.7 | 1,604,485 | 8/11/2020 | |
| 3.1.6 | 1,799,961 | 7/14/2020 | |
| 3.1.5 | 2,178,605 | 6/9/2020 | |
| 3.1.4 | 1,528,625 | 5/12/2020 | |
| 3.1.3 | 2,455,621 | 3/24/2020 | |
| 3.1.2 | 2,029,466 | 2/18/2020 | |
| 3.1.1 | 1,814,317 | 1/14/2020 | |
| 3.1.0 | 2,175,527 | 12/3/2019 | |
| 3.1.0-preview3.19555.2 | 2,491 | 11/13/2019 | |
| 3.1.0-preview2.19528.8 | 1,236 | 11/1/2019 | |
| 3.1.0-preview1.19508.20 | 1,727 | 10/15/2019 | |
| 3.0.3 | 111,258 | 2/18/2020 | |
| 3.0.2 | 59,758 | 1/14/2020 | |
| 3.0.0 | 3,011,990 | 9/23/2019 | |
| 3.0.0-rc1.19457.4 | 10,875 | 9/16/2019 | |
| 3.0.0-preview9.19424.4 | 5,287 | 9/4/2019 | |
| 3.0.0-preview8.19405.7 | 17,055 | 8/13/2019 | |
| 3.0.0-preview7.19365.7 | 6,076 | 7/23/2019 | |
| 3.0.0-preview6.19307.2 | 4,802 | 6/12/2019 | |
| 3.0.0-preview5-19227-01 | 18,746 | 5/6/2019 | |
| 3.0.0-preview4-19216-03 | 2,218 | 4/18/2019 | |
| 3.0.0-preview3-19153-02 | 1,681 | 3/6/2019 | |
| 3.0.0-preview-19075-0444 | 3,937 | 1/29/2019 | |
| 3.0.0-preview-18579-0056 | 3,384 | 12/3/2018 | |
| 2.3.0 | 42,871 | 1/14/2025 | |
| 2.2.0 | 6,841,815 | 12/3/2018 | |
| 2.2.0-preview3-35497 | 16,354 | 10/17/2018 | |
| 2.2.0-preview2-35157 | 4,507 | 9/12/2018 | |
| 2.2.0-preview1-35029 | 7,588 | 8/22/2018 | |
| 2.1.3 | 1,508,785 | 10/1/2018 | |
| 2.1.2 | 367,312 | 8/21/2018 | |
| 2.1.1 | 1,007,864 | 6/18/2018 | |
| 2.1.0 | 916,539 | 5/29/2018 | |
| 2.1.0-rc1-final | 21,236 | 5/6/2018 | |
| 2.1.0-preview2-final | 5,275 | 4/10/2018 | |
| 2.1.0-preview1-final | 4,200 | 2/26/2018 |