Microsoft.AspNetCore.Mvc.Testing
10.0.0-preview.6.25358.103
Prefix Reserved
See the version list below for details.
dotnet add package Microsoft.AspNetCore.Mvc.Testing --version 10.0.0-preview.6.25358.103
NuGet\Install-Package Microsoft.AspNetCore.Mvc.Testing -Version 10.0.0-preview.6.25358.103
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.0-preview.6.25358.103" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.0-preview.6.25358.103" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" />
paket add Microsoft.AspNetCore.Mvc.Testing --version 10.0.0-preview.6.25358.103
#r "nuget: Microsoft.AspNetCore.Mvc.Testing, 10.0.0-preview.6.25358.103"
#:package Microsoft.AspNetCore.Mvc.Testing@10.0.0-preview.6.25358.103
#addin nuget:?package=Microsoft.AspNetCore.Mvc.Testing&version=10.0.0-preview.6.25358.103&prerelease
#tool nuget:?package=Microsoft.AspNetCore.Mvc.Testing&version=10.0.0-preview.6.25358.103&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.6.25358.103)
- Microsoft.Extensions.DependencyModel (>= 10.0.0-preview.6.25358.103)
- Microsoft.Extensions.Hosting (>= 10.0.0-preview.6.25358.103)
NuGet packages (247)
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 (307)
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 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 RC 1, 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.
|
|
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-rc.1.25451.107 | 12,002 | 9/9/2025 | |
10.0.0-preview.7.25380.108 | 23,421 | 8/12/2025 | |
10.0.0-preview.6.25358.103 | 4,567 | 7/15/2025 | |
10.0.0-preview.5.25277.114 | 6,742 | 6/6/2025 | |
10.0.0-preview.4.25258.110 | 4,980 | 5/12/2025 | |
10.0.0-preview.3.25172.1 | 3,414 | 4/10/2025 | |
10.0.0-preview.2.25164.1 | 2,860 | 3/18/2025 | |
10.0.0-preview.1.25120.3 | 85,866 | 2/25/2025 | |
9.0.9 | 378,556 | 9/9/2025 | |
9.0.8 | 1,094,221 | 8/5/2025 | |
9.0.7 | 896,449 | 7/8/2025 | |
9.0.6 | 1,113,344 | 6/10/2025 | |
9.0.5 | 1,234,327 | 5/13/2025 | |
9.0.4 | 1,690,102 | 4/8/2025 | |
9.0.3 | 1,439,819 | 3/11/2025 | |
9.0.2 | 1,422,395 | 2/11/2025 | |
9.0.1 | 1,446,840 | 1/14/2025 | |
9.0.0 | 2,827,572 | 11/12/2024 | |
9.0.0-rc.2.24474.3 | 49,243 | 10/8/2024 | |
9.0.0-rc.1.24452.1 | 25,526 | 9/10/2024 | |
9.0.0-preview.7.24406.2 | 8,455 | 8/13/2024 | |
9.0.0-preview.6.24328.4 | 11,699 | 7/9/2024 | |
9.0.0-preview.5.24306.11 | 3,686 | 6/11/2024 | |
9.0.0-preview.4.24267.6 | 2,750 | 5/21/2024 | |
9.0.0-preview.3.24172.13 | 70,641 | 4/11/2024 | |
9.0.0-preview.2.24128.4 | 4,663 | 3/12/2024 | |
9.0.0-preview.1.24081.5 | 26,028 | 2/13/2024 | |
8.0.20 | 206,924 | 9/9/2025 | |
8.0.19 | 839,171 | 8/4/2025 | |
8.0.18 | 559,289 | 7/8/2025 | |
8.0.17 | 1,049,770 | 6/10/2025 | |
8.0.16 | 960,421 | 5/13/2025 | |
8.0.15 | 1,611,618 | 4/8/2025 | |
8.0.14 | 1,705,957 | 3/11/2025 | |
8.0.13 | 1,925,291 | 2/11/2025 | |
8.0.12 | 1,843,373 | 1/14/2025 | |
8.0.11 | 5,013,826 | 11/12/2024 | |
8.0.10 | 6,758,957 | 10/8/2024 | |
8.0.8 | 7,771,212 | 8/13/2024 | |
8.0.7 | 5,567,935 | 7/9/2024 | |
8.0.6 | 4,754,963 | 5/28/2024 | |
8.0.5 | 2,212,856 | 5/14/2024 | |
8.0.4 | 5,536,326 | 4/9/2024 | |
8.0.3 | 3,575,171 | 3/12/2024 | |
8.0.2 | 3,322,409 | 2/13/2024 | |
8.0.1 | 3,725,499 | 1/9/2024 | |
8.0.0 | 5,478,623 | 11/14/2023 | |
8.0.0-rc.2.23480.2 | 58,152 | 10/10/2023 | |
8.0.0-rc.1.23421.29 | 57,727 | 9/12/2023 | |
8.0.0-preview.7.23375.9 | 10,905 | 8/8/2023 | |
8.0.0-preview.6.23329.11 | 28,125 | 7/11/2023 | |
8.0.0-preview.5.23302.2 | 12,875 | 6/13/2023 | |
8.0.0-preview.4.23260.4 | 262,458 | 5/16/2023 | |
8.0.0-preview.3.23177.8 | 3,639 | 4/11/2023 | |
8.0.0-preview.2.23153.2 | 2,120 | 3/14/2023 | |
8.0.0-preview.1.23112.2 | 41,056 | 2/21/2023 | |
7.0.20 | 530,614 | 5/28/2024 | |
7.0.19 | 82,400 | 5/14/2024 | |
7.0.18 | 189,687 | 4/9/2024 | |
7.0.17 | 389,934 | 3/12/2024 | |
7.0.16 | 425,275 | 2/13/2024 | |
7.0.15 | 567,439 | 1/9/2024 | |
7.0.14 | 968,293 | 11/14/2023 | |
7.0.13 | 2,113,847 | 10/24/2023 | |
7.0.12 | 726,035 | 10/10/2023 | |
7.0.11 | 3,215,111 | 9/12/2023 | |
7.0.10 | 1,428,608 | 8/8/2023 | |
7.0.9 | 1,244,610 | 7/11/2023 | |
7.0.8 | 915,843 | 6/22/2023 | |
7.0.7 | 489,768 | 6/13/2023 | |
7.0.5 | 2,989,557 | 4/11/2023 | |
7.0.4 | 1,656,284 | 3/14/2023 | |
7.0.3 | 1,520,106 | 2/14/2023 | |
7.0.2 | 1,508,049 | 1/10/2023 | |
7.0.1 | 872,620 | 12/13/2022 | |
7.0.0 | 2,865,568 | 11/7/2022 | |
7.0.0-rc.2.22476.2 | 67,400 | 10/11/2022 | |
7.0.0-rc.1.22427.2 | 22,565 | 9/14/2022 | |
7.0.0-preview.7.22376.6 | 7,845 | 8/9/2022 | |
7.0.0-preview.6.22330.3 | 2,519 | 7/12/2022 | |
7.0.0-preview.5.22303.8 | 9,466 | 6/14/2022 | |
7.0.0-preview.4.22251.1 | 2,232 | 5/10/2022 | |
7.0.0-preview.3.22178.4 | 1,325 | 4/13/2022 | |
7.0.0-preview.2.22153.2 | 1,086 | 3/14/2022 | |
7.0.0-preview.1.22109.13 | 5,170 | 2/17/2022 | |
6.0.36 | 1,214,631 | 11/12/2024 | |
6.0.35 | 225,087 | 10/8/2024 | |
6.0.33 | 1,143,088 | 8/13/2024 | |
6.0.32 | 309,289 | 7/9/2024 | |
6.0.31 | 456,736 | 5/28/2024 | |
6.0.30 | 157,943 | 5/14/2024 | |
6.0.29 | 688,376 | 4/9/2024 | |
6.0.28 | 416,896 | 3/12/2024 | |
6.0.27 | 623,614 | 2/13/2024 | |
6.0.26 | 897,794 | 1/9/2024 | |
6.0.25 | 1,646,598 | 11/14/2023 | |
6.0.24 | 832,064 | 10/24/2023 | |
6.0.23 | 595,201 | 10/10/2023 | |
6.0.22 | 960,718 | 9/12/2023 | |
6.0.21 | 1,341,105 | 8/8/2023 | |
6.0.20 | 1,242,643 | 7/11/2023 | |
6.0.19 | 745,296 | 6/22/2023 | |
6.0.18 | 495,826 | 6/13/2023 | |
6.0.16 | 2,539,267 | 4/11/2023 | |
6.0.15 | 1,408,236 | 3/14/2023 | |
6.0.14 | 1,762,971 | 2/14/2023 | |
6.0.13 | 2,283,283 | 1/10/2023 | |
6.0.12 | 2,495,607 | 12/13/2022 | |
6.0.11 | 2,808,440 | 11/7/2022 | |
6.0.10 | 4,258,940 | 10/11/2022 | |
6.0.9 | 3,237,188 | 9/13/2022 | |
6.0.8 | 4,164,412 | 8/9/2022 | |
6.0.7 | 3,494,408 | 7/12/2022 | |
6.0.6 | 2,586,270 | 6/14/2022 | |
6.0.5 | 3,188,910 | 5/10/2022 | |
6.0.4 | 2,960,725 | 4/11/2022 | |
6.0.3 | 3,161,638 | 3/8/2022 | |
6.0.2 | 3,079,352 | 2/8/2022 | |
6.0.1 | 4,458,328 | 12/14/2021 | |
6.0.0 | 5,157,222 | 11/8/2021 | |
6.0.0-rc.2.21480.10 | 205,807 | 10/12/2021 | |
6.0.0-rc.1.21452.15 | 173,377 | 9/14/2021 | |
6.0.0-preview.7.21378.6 | 7,431 | 8/10/2021 | |
6.0.0-preview.6.21355.2 | 4,498 | 7/14/2021 | |
6.0.0-preview.5.21301.17 | 3,281 | 6/15/2021 | |
6.0.0-preview.4.21253.5 | 6,658 | 5/24/2021 | |
6.0.0-preview.3.21201.13 | 5,007 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 989 | 3/11/2021 | |
6.0.0-preview.1.21103.6 | 1,081 | 2/12/2021 | |
5.0.17 | 719,292 | 5/10/2022 | |
5.0.16 | 111,773 | 4/11/2022 | |
5.0.15 | 216,872 | 3/8/2022 | |
5.0.14 | 213,382 | 2/8/2022 | |
5.0.13 | 506,541 | 12/14/2021 | |
5.0.12 | 612,621 | 11/7/2021 | |
5.0.11 | 1,052,960 | 10/12/2021 | |
5.0.10 | 1,070,575 | 9/14/2021 | |
5.0.9 | 1,187,333 | 8/10/2021 | |
5.0.8 | 933,941 | 7/13/2021 | |
5.0.7 | 1,209,343 | 6/8/2021 | |
5.0.6 | 954,881 | 5/11/2021 | |
5.0.5 | 1,392,115 | 4/6/2021 | |
5.0.4 | 834,699 | 3/9/2021 | |
5.0.3 | 998,780 | 2/9/2021 | |
5.0.2 | 946,929 | 1/12/2021 | |
5.0.1 | 588,976 | 12/8/2020 | |
5.0.0 | 1,725,018 | 11/9/2020 | |
5.0.0-rc.2.20475.17 | 15,095 | 10/13/2020 | |
5.0.0-rc.1.20451.17 | 9,209 | 9/14/2020 | |
5.0.0-preview.8.20414.8 | 9,291 | 8/25/2020 | |
5.0.0-preview.7.20365.19 | 3,818 | 7/21/2020 | |
5.0.0-preview.6.20312.15 | 2,174 | 6/25/2020 | |
5.0.0-preview.5.20279.2 | 1,010 | 6/10/2020 | |
5.0.0-preview.4.20257.10 | 1,637 | 5/18/2020 | |
5.0.0-preview.3.20215.14 | 2,116 | 4/23/2020 | |
5.0.0-preview.2.20167.3 | 1,003 | 4/2/2020 | |
5.0.0-preview.1.20124.5 | 1,251 | 3/16/2020 | |
3.1.32 | 491,173 | 12/13/2022 | |
3.1.31 | 99,948 | 11/8/2022 | |
3.1.30 | 787,259 | 10/11/2022 | |
3.1.29 | 74,225 | 9/13/2022 | |
3.1.28 | 119,641 | 8/9/2022 | |
3.1.27 | 111,150 | 7/12/2022 | |
3.1.26 | 126,616 | 6/14/2022 | |
3.1.25 | 142,985 | 5/10/2022 | |
3.1.24 | 144,143 | 4/11/2022 | |
3.1.23 | 208,525 | 3/8/2022 | |
3.1.22 | 610,574 | 12/14/2021 | |
3.1.21 | 444,479 | 11/7/2021 | |
3.1.20 | 403,222 | 10/11/2021 | |
3.1.19 | 275,324 | 9/14/2021 | |
3.1.18 | 809,963 | 8/10/2021 | |
3.1.17 | 573,267 | 7/13/2021 | |
3.1.16 | 499,639 | 6/8/2021 | |
3.1.15 | 446,335 | 5/11/2021 | |
3.1.14 | 783,663 | 4/6/2021 | |
3.1.13 | 917,723 | 3/9/2021 | |
3.1.12 | 556,433 | 2/9/2021 | |
3.1.11 | 713,095 | 1/12/2021 | |
3.1.10 | 2,171,373 | 11/9/2020 | |
3.1.9 | 2,346,858 | 10/13/2020 | |
3.1.8 | 2,051,690 | 9/8/2020 | |
3.1.7 | 1,596,184 | 8/11/2020 | |
3.1.6 | 1,791,034 | 7/14/2020 | |
3.1.5 | 2,166,658 | 6/9/2020 | |
3.1.4 | 1,519,262 | 5/12/2020 | |
3.1.3 | 2,441,694 | 3/24/2020 | |
3.1.2 | 2,018,680 | 2/18/2020 | |
3.1.1 | 1,807,847 | 1/14/2020 | |
3.1.0 | 2,165,229 | 12/3/2019 | |
3.1.0-preview3.19555.2 | 2,421 | 11/13/2019 | |
3.1.0-preview2.19528.8 | 1,184 | 11/1/2019 | |
3.1.0-preview1.19508.20 | 1,664 | 10/15/2019 | |
3.0.3 | 110,604 | 2/18/2020 | |
3.0.2 | 59,247 | 1/14/2020 | |
3.0.0 | 2,970,972 | 9/23/2019 | |
3.0.0-rc1.19457.4 | 10,713 | 9/16/2019 | |
3.0.0-preview9.19424.4 | 5,223 | 9/4/2019 | |
3.0.0-preview8.19405.7 | 16,549 | 8/13/2019 | |
3.0.0-preview7.19365.7 | 5,967 | 7/23/2019 | |
3.0.0-preview6.19307.2 | 4,747 | 6/12/2019 | |
3.0.0-preview5-19227-01 | 17,094 | 5/6/2019 | |
3.0.0-preview4-19216-03 | 2,168 | 4/18/2019 | |
3.0.0-preview3-19153-02 | 1,632 | 3/6/2019 | |
3.0.0-preview-19075-0444 | 3,861 | 1/29/2019 | |
3.0.0-preview-18579-0056 | 3,309 | 12/3/2018 | |
2.3.0 | 23,458 | 1/14/2025 | |
2.2.0 | 6,770,897 | 12/3/2018 | |
2.2.0-preview3-35497 | 16,278 | 10/17/2018 | |
2.2.0-preview2-35157 | 4,428 | 9/12/2018 | |
2.2.0-preview1-35029 | 7,508 | 8/22/2018 | |
2.1.3 | 1,502,422 | 10/1/2018 | |
2.1.2 | 365,554 | 8/21/2018 | |
2.1.1 | 1,003,797 | 6/18/2018 | |
2.1.0 | 895,124 | 5/29/2018 | |
2.1.0-rc1-final | 21,140 | 5/6/2018 | |
2.1.0-preview2-final | 5,167 | 4/10/2018 | |
2.1.0-preview1-final | 4,098 | 2/26/2018 |