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 (309)
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 | 64,952 | 11/11/2025 | |
| 10.0.0-rc.2.25502.107 | 42,619 | 10/14/2025 | |
| 10.0.0-rc.1.25451.107 | 53,204 | 9/9/2025 | |
| 10.0.0-preview.7.25380.108 | 24,939 | 8/12/2025 | |
| 10.0.0-preview.6.25358.103 | 5,657 | 7/15/2025 | |
| 10.0.0-preview.5.25277.114 | 8,878 | 6/6/2025 | |
| 10.0.0-preview.4.25258.110 | 5,183 | 5/12/2025 | |
| 10.0.0-preview.3.25172.1 | 3,549 | 4/10/2025 | |
| 10.0.0-preview.2.25164.1 | 3,108 | 3/18/2025 | |
| 10.0.0-preview.1.25120.3 | 109,111 | 2/25/2025 | |
| 9.0.11 | 39,542 | 11/11/2025 | |
| 9.0.10 | 875,763 | 10/14/2025 | |
| 9.0.9 | 1,455,968 | 9/9/2025 | |
| 9.0.8 | 1,546,523 | 8/5/2025 | |
| 9.0.7 | 1,152,717 | 7/8/2025 | |
| 9.0.6 | 1,404,657 | 6/10/2025 | |
| 9.0.5 | 1,437,659 | 5/13/2025 | |
| 9.0.4 | 1,914,723 | 4/8/2025 | |
| 9.0.3 | 1,591,466 | 3/11/2025 | |
| 9.0.2 | 1,573,051 | 2/11/2025 | |
| 9.0.1 | 1,597,044 | 1/14/2025 | |
| 9.0.0 | 3,225,008 | 11/12/2024 | |
| 9.0.0-rc.2.24474.3 | 53,315 | 10/8/2024 | |
| 9.0.0-rc.1.24452.1 | 27,316 | 9/10/2024 | |
| 9.0.0-preview.7.24406.2 | 9,463 | 8/13/2024 | |
| 9.0.0-preview.6.24328.4 | 11,893 | 7/9/2024 | |
| 9.0.0-preview.5.24306.11 | 4,563 | 6/11/2024 | |
| 9.0.0-preview.4.24267.6 | 3,139 | 5/21/2024 | |
| 9.0.0-preview.3.24172.13 | 70,792 | 4/11/2024 | |
| 9.0.0-preview.2.24128.4 | 5,018 | 3/12/2024 | |
| 9.0.0-preview.1.24081.5 | 26,161 | 2/13/2024 | |
| 8.0.22 | 38,804 | 11/11/2025 | |
| 8.0.21 | 509,484 | 10/14/2025 | |
| 8.0.20 | 813,100 | 9/9/2025 | |
| 8.0.19 | 1,488,825 | 8/4/2025 | |
| 8.0.18 | 790,763 | 7/8/2025 | |
| 8.0.17 | 1,300,580 | 6/10/2025 | |
| 8.0.16 | 1,191,273 | 5/13/2025 | |
| 8.0.15 | 1,902,130 | 4/8/2025 | |
| 8.0.14 | 1,964,373 | 3/11/2025 | |
| 8.0.13 | 2,210,993 | 2/11/2025 | |
| 8.0.12 | 2,113,076 | 1/14/2025 | |
| 8.0.11 | 5,586,261 | 11/12/2024 | |
| 8.0.10 | 7,445,744 | 10/8/2024 | |
| 8.0.8 | 8,436,235 | 8/13/2024 | |
| 8.0.7 | 6,082,841 | 7/9/2024 | |
| 8.0.6 | 5,067,755 | 5/28/2024 | |
| 8.0.5 | 2,327,489 | 5/14/2024 | |
| 8.0.4 | 6,030,164 | 4/9/2024 | |
| 8.0.3 | 3,791,192 | 3/12/2024 | |
| 8.0.2 | 3,488,929 | 2/13/2024 | |
| 8.0.1 | 3,885,978 | 1/9/2024 | |
| 8.0.0 | 6,028,896 | 11/14/2023 | |
| 8.0.0-rc.2.23480.2 | 58,500 | 10/10/2023 | |
| 8.0.0-rc.1.23421.29 | 60,610 | 9/12/2023 | |
| 8.0.0-preview.7.23375.9 | 11,014 | 8/8/2023 | |
| 8.0.0-preview.6.23329.11 | 28,245 | 7/11/2023 | |
| 8.0.0-preview.5.23302.2 | 12,937 | 6/13/2023 | |
| 8.0.0-preview.4.23260.4 | 264,475 | 5/16/2023 | |
| 8.0.0-preview.3.23177.8 | 3,789 | 4/11/2023 | |
| 8.0.0-preview.2.23153.2 | 2,158 | 3/14/2023 | |
| 8.0.0-preview.1.23112.2 | 41,110 | 2/21/2023 | |
| 7.0.20 | 573,587 | 5/28/2024 | |
| 7.0.19 | 88,537 | 5/14/2024 | |
| 7.0.18 | 197,213 | 4/9/2024 | |
| 7.0.17 | 402,874 | 3/12/2024 | |
| 7.0.16 | 444,297 | 2/13/2024 | |
| 7.0.15 | 578,724 | 1/9/2024 | |
| 7.0.14 | 983,191 | 11/14/2023 | |
| 7.0.13 | 2,283,401 | 10/24/2023 | |
| 7.0.12 | 731,943 | 10/10/2023 | |
| 7.0.11 | 3,409,921 | 9/12/2023 | |
| 7.0.10 | 1,451,119 | 8/8/2023 | |
| 7.0.9 | 1,257,458 | 7/11/2023 | |
| 7.0.8 | 926,934 | 6/22/2023 | |
| 7.0.7 | 502,745 | 6/13/2023 | |
| 7.0.5 | 3,044,673 | 4/11/2023 | |
| 7.0.4 | 1,672,040 | 3/14/2023 | |
| 7.0.3 | 1,543,934 | 2/14/2023 | |
| 7.0.2 | 1,521,599 | 1/10/2023 | |
| 7.0.1 | 882,039 | 12/13/2022 | |
| 7.0.0 | 2,982,573 | 11/7/2022 | |
| 7.0.0-rc.2.22476.2 | 68,037 | 10/11/2022 | |
| 7.0.0-rc.1.22427.2 | 22,796 | 9/14/2022 | |
| 7.0.0-preview.7.22376.6 | 7,885 | 8/9/2022 | |
| 7.0.0-preview.6.22330.3 | 2,641 | 7/12/2022 | |
| 7.0.0-preview.5.22303.8 | 9,521 | 6/14/2022 | |
| 7.0.0-preview.4.22251.1 | 2,273 | 5/10/2022 | |
| 7.0.0-preview.3.22178.4 | 1,364 | 4/13/2022 | |
| 7.0.0-preview.2.22153.2 | 1,158 | 3/14/2022 | |
| 7.0.0-preview.1.22109.13 | 5,228 | 2/17/2022 | |
| 6.0.36 | 1,433,353 | 11/12/2024 | |
| 6.0.35 | 241,032 | 10/8/2024 | |
| 6.0.33 | 1,253,830 | 8/13/2024 | |
| 6.0.32 | 326,261 | 7/9/2024 | |
| 6.0.31 | 470,772 | 5/28/2024 | |
| 6.0.30 | 163,088 | 5/14/2024 | |
| 6.0.29 | 710,818 | 4/9/2024 | |
| 6.0.28 | 430,441 | 3/12/2024 | |
| 6.0.27 | 647,069 | 2/13/2024 | |
| 6.0.26 | 916,045 | 1/9/2024 | |
| 6.0.25 | 1,701,566 | 11/14/2023 | |
| 6.0.24 | 847,714 | 10/24/2023 | |
| 6.0.23 | 610,761 | 10/10/2023 | |
| 6.0.22 | 993,783 | 9/12/2023 | |
| 6.0.21 | 1,366,471 | 8/8/2023 | |
| 6.0.20 | 1,277,802 | 7/11/2023 | |
| 6.0.19 | 759,637 | 6/22/2023 | |
| 6.0.18 | 504,785 | 6/13/2023 | |
| 6.0.16 | 2,579,380 | 4/11/2023 | |
| 6.0.15 | 1,443,141 | 3/14/2023 | |
| 6.0.14 | 1,800,094 | 2/14/2023 | |
| 6.0.13 | 2,316,692 | 1/10/2023 | |
| 6.0.12 | 2,518,331 | 12/13/2022 | |
| 6.0.11 | 2,847,032 | 11/7/2022 | |
| 6.0.10 | 4,338,419 | 10/11/2022 | |
| 6.0.9 | 3,281,168 | 9/13/2022 | |
| 6.0.8 | 4,234,762 | 8/9/2022 | |
| 6.0.7 | 3,527,946 | 7/12/2022 | |
| 6.0.6 | 2,617,523 | 6/14/2022 | |
| 6.0.5 | 3,225,390 | 5/10/2022 | |
| 6.0.4 | 3,014,192 | 4/11/2022 | |
| 6.0.3 | 3,187,764 | 3/8/2022 | |
| 6.0.2 | 3,115,567 | 2/8/2022 | |
| 6.0.1 | 4,492,912 | 12/14/2021 | |
| 6.0.0 | 5,262,633 | 11/8/2021 | |
| 6.0.0-rc.2.21480.10 | 206,052 | 10/12/2021 | |
| 6.0.0-rc.1.21452.15 | 173,619 | 9/14/2021 | |
| 6.0.0-preview.7.21378.6 | 7,468 | 8/10/2021 | |
| 6.0.0-preview.6.21355.2 | 4,562 | 7/14/2021 | |
| 6.0.0-preview.5.21301.17 | 3,333 | 6/15/2021 | |
| 6.0.0-preview.4.21253.5 | 6,705 | 5/24/2021 | |
| 6.0.0-preview.3.21201.13 | 5,054 | 4/8/2021 | |
| 6.0.0-preview.2.21154.6 | 1,051 | 3/11/2021 | |
| 6.0.0-preview.1.21103.6 | 1,122 | 2/12/2021 | |
| 5.0.17 | 736,824 | 5/10/2022 | |
| 5.0.16 | 113,293 | 4/11/2022 | |
| 5.0.15 | 218,290 | 3/8/2022 | |
| 5.0.14 | 216,199 | 2/8/2022 | |
| 5.0.13 | 509,880 | 12/14/2021 | |
| 5.0.12 | 616,917 | 11/7/2021 | |
| 5.0.11 | 1,059,836 | 10/12/2021 | |
| 5.0.10 | 1,075,045 | 9/14/2021 | |
| 5.0.9 | 1,194,978 | 8/10/2021 | |
| 5.0.8 | 937,350 | 7/13/2021 | |
| 5.0.7 | 1,214,615 | 6/8/2021 | |
| 5.0.6 | 957,933 | 5/11/2021 | |
| 5.0.5 | 1,397,282 | 4/6/2021 | |
| 5.0.4 | 838,808 | 3/9/2021 | |
| 5.0.3 | 1,001,691 | 2/9/2021 | |
| 5.0.2 | 948,641 | 1/12/2021 | |
| 5.0.1 | 591,623 | 12/8/2020 | |
| 5.0.0 | 1,769,777 | 11/9/2020 | |
| 5.0.0-rc.2.20475.17 | 15,198 | 10/13/2020 | |
| 5.0.0-rc.1.20451.17 | 9,267 | 9/14/2020 | |
| 5.0.0-preview.8.20414.8 | 9,339 | 8/25/2020 | |
| 5.0.0-preview.7.20365.19 | 3,888 | 7/21/2020 | |
| 5.0.0-preview.6.20312.15 | 2,235 | 6/25/2020 | |
| 5.0.0-preview.5.20279.2 | 1,063 | 6/10/2020 | |
| 5.0.0-preview.4.20257.10 | 1,690 | 5/18/2020 | |
| 5.0.0-preview.3.20215.14 | 2,173 | 4/23/2020 | |
| 5.0.0-preview.2.20167.3 | 1,047 | 4/2/2020 | |
| 5.0.0-preview.1.20124.5 | 1,306 | 3/16/2020 | |
| 3.1.32 | 513,244 | 12/13/2022 | |
| 3.1.31 | 102,572 | 11/8/2022 | |
| 3.1.30 | 793,390 | 10/11/2022 | |
| 3.1.29 | 76,876 | 9/13/2022 | |
| 3.1.28 | 123,048 | 8/9/2022 | |
| 3.1.27 | 112,277 | 7/12/2022 | |
| 3.1.26 | 127,611 | 6/14/2022 | |
| 3.1.25 | 144,187 | 5/10/2022 | |
| 3.1.24 | 146,085 | 4/11/2022 | |
| 3.1.23 | 210,113 | 3/8/2022 | |
| 3.1.22 | 619,901 | 12/14/2021 | |
| 3.1.21 | 448,329 | 11/7/2021 | |
| 3.1.20 | 411,045 | 10/11/2021 | |
| 3.1.19 | 277,448 | 9/14/2021 | |
| 3.1.18 | 813,313 | 8/10/2021 | |
| 3.1.17 | 576,032 | 7/13/2021 | |
| 3.1.16 | 501,889 | 6/8/2021 | |
| 3.1.15 | 448,524 | 5/11/2021 | |
| 3.1.14 | 787,276 | 4/6/2021 | |
| 3.1.13 | 922,676 | 3/9/2021 | |
| 3.1.12 | 558,386 | 2/9/2021 | |
| 3.1.11 | 717,960 | 1/12/2021 | |
| 3.1.10 | 2,183,089 | 11/9/2020 | |
| 3.1.9 | 2,356,568 | 10/13/2020 | |
| 3.1.8 | 2,058,047 | 9/8/2020 | |
| 3.1.7 | 1,603,978 | 8/11/2020 | |
| 3.1.6 | 1,799,427 | 7/14/2020 | |
| 3.1.5 | 2,178,070 | 6/9/2020 | |
| 3.1.4 | 1,528,040 | 5/12/2020 | |
| 3.1.3 | 2,454,585 | 3/24/2020 | |
| 3.1.2 | 2,028,386 | 2/18/2020 | |
| 3.1.1 | 1,813,757 | 1/14/2020 | |
| 3.1.0 | 2,174,959 | 12/3/2019 | |
| 3.1.0-preview3.19555.2 | 2,486 | 11/13/2019 | |
| 3.1.0-preview2.19528.8 | 1,233 | 11/1/2019 | |
| 3.1.0-preview1.19508.20 | 1,723 | 10/15/2019 | |
| 3.0.3 | 111,232 | 2/18/2020 | |
| 3.0.2 | 59,744 | 1/14/2020 | |
| 3.0.0 | 3,009,448 | 9/23/2019 | |
| 3.0.0-rc1.19457.4 | 10,873 | 9/16/2019 | |
| 3.0.0-preview9.19424.4 | 5,283 | 9/4/2019 | |
| 3.0.0-preview8.19405.7 | 17,034 | 8/13/2019 | |
| 3.0.0-preview7.19365.7 | 6,019 | 7/23/2019 | |
| 3.0.0-preview6.19307.2 | 4,797 | 6/12/2019 | |
| 3.0.0-preview5-19227-01 | 18,706 | 5/6/2019 | |
| 3.0.0-preview4-19216-03 | 2,216 | 4/18/2019 | |
| 3.0.0-preview3-19153-02 | 1,677 | 3/6/2019 | |
| 3.0.0-preview-19075-0444 | 3,932 | 1/29/2019 | |
| 3.0.0-preview-18579-0056 | 3,378 | 12/3/2018 | |
| 2.3.0 | 41,505 | 1/14/2025 | |
| 2.2.0 | 6,837,396 | 12/3/2018 | |
| 2.2.0-preview3-35497 | 16,349 | 10/17/2018 | |
| 2.2.0-preview2-35157 | 4,503 | 9/12/2018 | |
| 2.2.0-preview1-35029 | 7,582 | 8/22/2018 | |
| 2.1.3 | 1,508,291 | 10/1/2018 | |
| 2.1.2 | 367,288 | 8/21/2018 | |
| 2.1.1 | 1,007,630 | 6/18/2018 | |
| 2.1.0 | 914,797 | 5/29/2018 | |
| 2.1.0-rc1-final | 21,228 | 5/6/2018 | |
| 2.1.0-preview2-final | 5,269 | 4/10/2018 | |
| 2.1.0-preview1-final | 4,192 | 2/26/2018 |