Microsoft.AspNetCore.Mvc.Testing
10.0.0-preview.4.25258.110
Prefix Reserved
See the version list below for details.
dotnet add package Microsoft.AspNetCore.Mvc.Testing --version 10.0.0-preview.4.25258.110
NuGet\Install-Package Microsoft.AspNetCore.Mvc.Testing -Version 10.0.0-preview.4.25258.110
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.0-preview.4.25258.110" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.0-preview.4.25258.110" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" />
paket add Microsoft.AspNetCore.Mvc.Testing --version 10.0.0-preview.4.25258.110
#r "nuget: Microsoft.AspNetCore.Mvc.Testing, 10.0.0-preview.4.25258.110"
#addin nuget:?package=Microsoft.AspNetCore.Mvc.Testing&version=10.0.0-preview.4.25258.110&prerelease
#tool nuget:?package=Microsoft.AspNetCore.Mvc.Testing&version=10.0.0-preview.4.25258.110&prerelease
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'sbin
directory - Sets the content root to the SUT's project root so that static files are found during test execution
- Provides the
WebApplicationFactory
class 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:
xunit
xunit.runner.visualstudio
Microsoft.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-preview.4.25258.110)
- Microsoft.Extensions.DependencyModel (>= 10.0.0-preview.4.25258.110)
- Microsoft.Extensions.Hosting (>= 10.0.0-preview.4.25258.110)
NuGet packages (235)
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. |
|
Volo.Abp.AspNetCore.TestBase
Package Description |
|
Reo.Core.IntegrationTesting
Package Description |
|
FastEndpoints.Testing
Integration/End-To-End testing helper library for FastEndpoints |
GitHub repositories (294)
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
|
|
jasontaylordev/CleanArchitecture
Clean Architecture Solution Template for ASP.NET Core
|
|
ardalis/CleanArchitecture
Clean Architecture Solution Template: A proven Clean Architecture Template for ASP.NET Core 9
|
|
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 Preview 5, 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.
|
|
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.
|
|
FastEndpoints/FastEndpoints
A light-weight REST API development framework for ASP.NET 8 and newer.
|
|
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.
|
Version | Downloads | Last updated | |
---|---|---|---|
10.0.0-preview.5.25277.114 | 1,071 | 6/6/2025 | |
10.0.0-preview.4.25258.110 | 4,493 | 5/12/2025 | |
10.0.0-preview.3.25172.1 | 3,226 | 4/10/2025 | |
10.0.0-preview.2.25164.1 | 2,783 | 3/18/2025 | |
10.0.0-preview.1.25120.3 | 16,697 | 2/25/2025 | |
9.0.6 | 91,541 | 6/10/2025 | |
9.0.5 | 592,913 | 5/13/2025 | |
9.0.4 | 1,104,816 | 4/8/2025 | |
9.0.3 | 1,076,573 | 3/11/2025 | |
9.0.2 | 1,101,640 | 2/11/2025 | |
9.0.1 | 1,166,332 | 1/14/2025 | |
9.0.0 | 2,210,227 | 11/12/2024 | |
9.0.0-rc.2.24474.3 | 42,054 | 10/8/2024 | |
9.0.0-rc.1.24452.1 | 20,704 | 9/10/2024 | |
9.0.0-preview.7.24406.2 | 7,364 | 8/13/2024 | |
9.0.0-preview.6.24328.4 | 10,885 | 7/9/2024 | |
9.0.0-preview.5.24306.11 | 3,362 | 6/11/2024 | |
9.0.0-preview.4.24267.6 | 2,462 | 5/21/2024 | |
9.0.0-preview.3.24172.13 | 70,117 | 4/11/2024 | |
9.0.0-preview.2.24128.4 | 3,833 | 3/12/2024 | |
9.0.0-preview.1.24081.5 | 25,178 | 2/13/2024 | |
8.0.17 | 56,289 | 6/10/2025 | |
8.0.16 | 415,694 | 5/13/2025 | |
8.0.15 | 886,136 | 4/8/2025 | |
8.0.14 | 1,062,649 | 3/11/2025 | |
8.0.13 | 1,347,802 | 2/11/2025 | |
8.0.12 | 1,359,015 | 1/14/2025 | |
8.0.11 | 3,925,302 | 11/12/2024 | |
8.0.10 | 5,503,094 | 10/8/2024 | |
8.0.8 | 6,481,664 | 8/13/2024 | |
8.0.7 | 4,613,320 | 7/9/2024 | |
8.0.6 | 4,110,035 | 5/28/2024 | |
8.0.5 | 1,870,217 | 5/14/2024 | |
8.0.4 | 4,544,103 | 4/9/2024 | |
8.0.3 | 3,132,700 | 3/12/2024 | |
8.0.2 | 3,003,727 | 2/13/2024 | |
8.0.1 | 3,406,455 | 1/9/2024 | |
8.0.0 | 4,647,080 | 11/14/2023 | |
8.0.0-rc.2.23480.2 | 57,495 | 10/10/2023 | |
8.0.0-rc.1.23421.29 | 53,651 | 9/12/2023 | |
8.0.0-preview.7.23375.9 | 10,629 | 8/8/2023 | |
8.0.0-preview.6.23329.11 | 27,887 | 7/11/2023 | |
8.0.0-preview.5.23302.2 | 12,747 | 6/13/2023 | |
8.0.0-preview.4.23260.4 | 256,225 | 5/16/2023 | |
8.0.0-preview.3.23177.8 | 3,344 | 4/11/2023 | |
8.0.0-preview.2.23153.2 | 2,039 | 3/14/2023 | |
8.0.0-preview.1.23112.2 | 40,964 | 2/21/2023 | |
7.0.20 | 443,652 | 5/28/2024 | |
7.0.19 | 71,406 | 5/14/2024 | |
7.0.18 | 176,847 | 4/9/2024 | |
7.0.17 | 364,176 | 3/12/2024 | |
7.0.16 | 388,283 | 2/13/2024 | |
7.0.15 | 545,803 | 1/9/2024 | |
7.0.14 | 937,269 | 11/14/2023 | |
7.0.13 | 1,818,502 | 10/24/2023 | |
7.0.12 | 710,355 | 10/10/2023 | |
7.0.11 | 2,788,663 | 9/12/2023 | |
7.0.10 | 1,384,727 | 8/8/2023 | |
7.0.9 | 1,220,967 | 7/11/2023 | |
7.0.8 | 890,818 | 6/22/2023 | |
7.0.7 | 466,608 | 6/13/2023 | |
7.0.5 | 2,868,237 | 4/11/2023 | |
7.0.4 | 1,624,061 | 3/14/2023 | |
7.0.3 | 1,469,730 | 2/14/2023 | |
7.0.2 | 1,482,198 | 1/10/2023 | |
7.0.1 | 854,350 | 12/13/2022 | |
7.0.0 | 2,662,203 | 11/7/2022 | |
7.0.0-rc.2.22476.2 | 66,487 | 10/11/2022 | |
7.0.0-rc.1.22427.2 | 21,983 | 9/14/2022 | |
7.0.0-preview.7.22376.6 | 7,738 | 8/9/2022 | |
7.0.0-preview.6.22330.3 | 2,445 | 7/12/2022 | |
7.0.0-preview.5.22303.8 | 9,325 | 6/14/2022 | |
7.0.0-preview.4.22251.1 | 2,140 | 5/10/2022 | |
7.0.0-preview.3.22178.4 | 1,250 | 4/13/2022 | |
7.0.0-preview.2.22153.2 | 1,007 | 3/14/2022 | |
7.0.0-preview.1.22109.13 | 5,069 | 2/17/2022 | |
6.0.36 | 791,384 | 11/12/2024 | |
6.0.35 | 196,481 | 10/8/2024 | |
6.0.33 | 903,857 | 8/13/2024 | |
6.0.32 | 279,176 | 7/9/2024 | |
6.0.31 | 424,234 | 5/28/2024 | |
6.0.30 | 148,887 | 5/14/2024 | |
6.0.29 | 645,804 | 4/9/2024 | |
6.0.28 | 388,962 | 3/12/2024 | |
6.0.27 | 587,197 | 2/13/2024 | |
6.0.26 | 857,228 | 1/9/2024 | |
6.0.25 | 1,546,739 | 11/14/2023 | |
6.0.24 | 810,515 | 10/24/2023 | |
6.0.23 | 558,929 | 10/10/2023 | |
6.0.22 | 907,062 | 9/12/2023 | |
6.0.21 | 1,286,544 | 8/8/2023 | |
6.0.20 | 1,181,729 | 7/11/2023 | |
6.0.19 | 719,446 | 6/22/2023 | |
6.0.18 | 475,751 | 6/13/2023 | |
6.0.16 | 2,439,993 | 4/11/2023 | |
6.0.15 | 1,334,532 | 3/14/2023 | |
6.0.14 | 1,700,858 | 2/14/2023 | |
6.0.13 | 2,204,685 | 1/10/2023 | |
6.0.12 | 2,442,907 | 12/13/2022 | |
6.0.11 | 2,715,436 | 11/7/2022 | |
6.0.10 | 4,131,258 | 10/11/2022 | |
6.0.9 | 3,150,170 | 9/13/2022 | |
6.0.8 | 4,028,073 | 8/9/2022 | |
6.0.7 | 3,417,124 | 7/12/2022 | |
6.0.6 | 2,509,057 | 6/14/2022 | |
6.0.5 | 3,124,504 | 5/10/2022 | |
6.0.4 | 2,882,366 | 4/11/2022 | |
6.0.3 | 3,105,051 | 3/8/2022 | |
6.0.2 | 3,009,495 | 2/8/2022 | |
6.0.1 | 4,371,083 | 12/14/2021 | |
6.0.0 | 4,962,582 | 11/8/2021 | |
6.0.0-rc.2.21480.10 | 203,149 | 10/12/2021 | |
6.0.0-rc.1.21452.15 | 172,502 | 9/14/2021 | |
6.0.0-preview.7.21378.6 | 7,356 | 8/10/2021 | |
6.0.0-preview.6.21355.2 | 4,186 | 7/14/2021 | |
6.0.0-preview.5.21301.17 | 3,142 | 6/15/2021 | |
6.0.0-preview.4.21253.5 | 4,190 | 5/24/2021 | |
6.0.0-preview.3.21201.13 | 2,890 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 872 | 3/11/2021 | |
6.0.0-preview.1.21103.6 | 974 | 2/12/2021 | |
5.0.17 | 692,416 | 5/10/2022 | |
5.0.16 | 109,290 | 4/11/2022 | |
5.0.15 | 213,752 | 3/8/2022 | |
5.0.14 | 209,504 | 2/8/2022 | |
5.0.13 | 500,178 | 12/14/2021 | |
5.0.12 | 604,458 | 11/7/2021 | |
5.0.11 | 1,043,527 | 10/12/2021 | |
5.0.10 | 1,063,502 | 9/14/2021 | |
5.0.9 | 1,180,883 | 8/10/2021 | |
5.0.8 | 927,728 | 7/13/2021 | |
5.0.7 | 1,201,097 | 6/8/2021 | |
5.0.6 | 948,204 | 5/11/2021 | |
5.0.5 | 1,383,738 | 4/6/2021 | |
5.0.4 | 830,137 | 3/9/2021 | |
5.0.3 | 993,794 | 2/9/2021 | |
5.0.2 | 944,174 | 1/12/2021 | |
5.0.1 | 583,935 | 12/8/2020 | |
5.0.0 | 1,655,480 | 11/9/2020 | |
5.0.0-rc.2.20475.17 | 14,945 | 10/13/2020 | |
5.0.0-rc.1.20451.17 | 9,057 | 9/14/2020 | |
5.0.0-preview.8.20414.8 | 9,161 | 8/25/2020 | |
5.0.0-preview.7.20365.19 | 3,696 | 7/21/2020 | |
5.0.0-preview.6.20312.15 | 2,056 | 6/25/2020 | |
5.0.0-preview.5.20279.2 | 889 | 6/10/2020 | |
5.0.0-preview.4.20257.10 | 1,521 | 5/18/2020 | |
5.0.0-preview.3.20215.14 | 1,963 | 4/23/2020 | |
5.0.0-preview.2.20167.3 | 891 | 4/2/2020 | |
5.0.0-preview.1.20124.5 | 1,127 | 3/16/2020 | |
3.1.32 | 452,759 | 12/13/2022 | |
3.1.31 | 96,246 | 11/8/2022 | |
3.1.30 | 778,975 | 10/11/2022 | |
3.1.29 | 71,831 | 9/13/2022 | |
3.1.28 | 117,272 | 8/9/2022 | |
3.1.27 | 109,677 | 7/12/2022 | |
3.1.26 | 123,610 | 6/14/2022 | |
3.1.25 | 140,447 | 5/10/2022 | |
3.1.24 | 141,068 | 4/11/2022 | |
3.1.23 | 206,467 | 3/8/2022 | |
3.1.22 | 595,421 | 12/14/2021 | |
3.1.21 | 437,355 | 11/7/2021 | |
3.1.20 | 390,104 | 10/11/2021 | |
3.1.19 | 271,524 | 9/14/2021 | |
3.1.18 | 803,122 | 8/10/2021 | |
3.1.17 | 569,373 | 7/13/2021 | |
3.1.16 | 494,598 | 6/8/2021 | |
3.1.15 | 440,964 | 5/11/2021 | |
3.1.14 | 776,139 | 4/6/2021 | |
3.1.13 | 909,372 | 3/9/2021 | |
3.1.12 | 552,349 | 2/9/2021 | |
3.1.11 | 704,311 | 1/12/2021 | |
3.1.10 | 2,149,939 | 11/9/2020 | |
3.1.9 | 2,329,300 | 10/13/2020 | |
3.1.8 | 2,039,358 | 9/8/2020 | |
3.1.7 | 1,580,318 | 8/11/2020 | |
3.1.6 | 1,775,575 | 7/14/2020 | |
3.1.5 | 2,132,027 | 6/9/2020 | |
3.1.4 | 1,501,759 | 5/12/2020 | |
3.1.3 | 2,415,120 | 3/24/2020 | |
3.1.2 | 2,000,081 | 2/18/2020 | |
3.1.1 | 1,796,945 | 1/14/2020 | |
3.1.0 | 2,149,857 | 12/3/2019 | |
3.1.0-preview3.19555.2 | 2,290 | 11/13/2019 | |
3.1.0-preview2.19528.8 | 1,072 | 11/1/2019 | |
3.1.0-preview1.19508.20 | 1,542 | 10/15/2019 | |
3.0.3 | 109,748 | 2/18/2020 | |
3.0.2 | 58,715 | 1/14/2020 | |
3.0.0 | 2,908,960 | 9/23/2019 | |
3.0.0-rc1.19457.4 | 10,599 | 9/16/2019 | |
3.0.0-preview9.19424.4 | 5,089 | 9/4/2019 | |
3.0.0-preview8.19405.7 | 15,416 | 8/13/2019 | |
3.0.0-preview7.19365.7 | 5,831 | 7/23/2019 | |
3.0.0-preview6.19307.2 | 4,629 | 6/12/2019 | |
3.0.0-preview5-19227-01 | 14,289 | 5/6/2019 | |
3.0.0-preview4-19216-03 | 2,051 | 4/18/2019 | |
3.0.0-preview3-19153-02 | 1,513 | 3/6/2019 | |
3.0.0-preview-19075-0444 | 3,686 | 1/29/2019 | |
3.0.0-preview-18579-0056 | 3,179 | 12/3/2018 | |
2.3.0 | 7,080 | 1/14/2025 | |
2.2.0 | 6,653,306 | 12/3/2018 | |
2.2.0-preview3-35497 | 16,120 | 10/17/2018 | |
2.2.0-preview2-35157 | 4,244 | 9/12/2018 | |
2.2.0-preview1-35029 | 7,336 | 8/22/2018 | |
2.1.3 | 1,485,572 | 10/1/2018 | |
2.1.2 | 363,942 | 8/21/2018 | |
2.1.1 | 998,648 | 6/18/2018 | |
2.1.0 | 863,396 | 5/29/2018 | |
2.1.0-rc1-final | 20,931 | 5/6/2018 | |
2.1.0-preview2-final | 4,934 | 4/10/2018 | |
2.1.0-preview1-final | 3,879 | 2/26/2018 |