Microsoft.AspNetCore.Mvc.Testing 10.0.0-preview.2.25164.1

Prefix Reserved
This is a prerelease version of Microsoft.AspNetCore.Mvc.Testing.
dotnet add package Microsoft.AspNetCore.Mvc.Testing --version 10.0.0-preview.2.25164.1
                    
NuGet\Install-Package Microsoft.AspNetCore.Mvc.Testing -Version 10.0.0-preview.2.25164.1
                    
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="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.0-preview.2.25164.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.0-preview.2.25164.1" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" />
                    
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 Microsoft.AspNetCore.Mvc.Testing --version 10.0.0-preview.2.25164.1
                    
#r "nuget: Microsoft.AspNetCore.Mvc.Testing, 10.0.0-preview.2.25164.1"
                    
#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=Microsoft.AspNetCore.Mvc.Testing&version=10.0.0-preview.2.25164.1&prerelease
                    
Install Microsoft.AspNetCore.Mvc.Testing as a Cake Addin
#tool nuget:?package=Microsoft.AspNetCore.Mvc.Testing&version=10.0.0-preview.2.25164.1&prerelease
                    
Install Microsoft.AspNetCore.Mvc.Testing as a Cake Tool

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's bin 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 with TestServer

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:

  1. Specify the Web SDK in the test project file (<Project Sdk="Microsoft.NET.Sdk.Web">).
  2. Add references to the following packages:
    • xunit
    • xunit.runner.visualstudio
    • Microsoft.NET.Test.Sdk
  3. 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 Compatible and additional computed target framework versions.
.NET net10.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (234)

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 (285)

Showing the top 5 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).
Version Downloads Last updated
10.0.0-preview.2.25164.1 1,115 3/18/2025
10.0.0-preview.1.25120.3 2,422 2/25/2025
9.0.3 391,621 3/11/2025
9.0.2 724,476 2/11/2025
9.0.1 847,740 1/14/2025
9.0.0 1,700,141 11/12/2024
9.0.0-rc.2.24474.3 36,778 10/8/2024
9.0.0-rc.1.24452.1 18,545 9/10/2024
9.0.0-preview.7.24406.2 7,029 8/13/2024
9.0.0-preview.6.24328.4 10,741 7/9/2024
9.0.0-preview.5.24306.11 3,225 6/11/2024
9.0.0-preview.4.24267.6 2,213 5/21/2024
9.0.0-preview.3.24172.13 69,669 4/11/2024
9.0.0-preview.2.24128.4 3,301 3/12/2024
9.0.0-preview.1.24081.5 23,890 2/13/2024
8.0.14 301,947 3/11/2025
8.0.13 744,258 2/11/2025
8.0.12 940,135 1/14/2025
8.0.11 2,945,609 11/12/2024
8.0.10 4,407,814 10/8/2024
8.0.8 5,476,985 8/13/2024
8.0.7 3,925,113 7/9/2024
8.0.6 3,572,418 5/28/2024
8.0.5 1,612,187 5/14/2024
8.0.4 3,926,022 4/9/2024
8.0.3 2,790,804 3/12/2024
8.0.2 2,752,868 2/13/2024
8.0.1 3,144,300 1/9/2024
8.0.0 4,143,422 11/14/2023
8.0.0-rc.2.23480.2 56,642 10/10/2023
8.0.0-rc.1.23421.29 50,194 9/12/2023
8.0.0-preview.7.23375.9 10,377 8/8/2023
8.0.0-preview.6.23329.11 27,577 7/11/2023
8.0.0-preview.5.23302.2 12,675 6/13/2023
8.0.0-preview.4.23260.4 227,523 5/16/2023
8.0.0-preview.3.23177.8 3,246 4/11/2023
8.0.0-preview.2.23153.2 2,009 3/14/2023
8.0.0-preview.1.23112.2 40,923 2/21/2023
7.0.20 367,163 5/28/2024
7.0.19 61,556 5/14/2024
7.0.18 164,481 4/9/2024
7.0.17 334,961 3/12/2024
7.0.16 357,510 2/13/2024
7.0.15 523,854 1/9/2024
7.0.14 903,982 11/14/2023
7.0.13 1,598,848 10/24/2023
7.0.12 689,286 10/10/2023
7.0.11 2,466,091 9/12/2023
7.0.10 1,348,415 8/8/2023
7.0.9 1,190,780 7/11/2023
7.0.8 867,960 6/22/2023
7.0.7 439,651 6/13/2023
7.0.5 2,774,582 4/11/2023
7.0.4 1,598,146 3/14/2023
7.0.3 1,428,946 2/14/2023
7.0.2 1,460,336 1/10/2023
7.0.1 834,285 12/13/2022
7.0.0 2,501,373 11/7/2022
7.0.0-rc.2.22476.2 65,913 10/11/2022
7.0.0-rc.1.22427.2 21,582 9/14/2022
7.0.0-preview.7.22376.6 7,606 8/9/2022
7.0.0-preview.6.22330.3 2,414 7/12/2022
7.0.0-preview.5.22303.8 9,291 6/14/2022
7.0.0-preview.4.22251.1 2,085 5/10/2022
7.0.0-preview.3.22178.4 1,212 4/13/2022
7.0.0-preview.2.22153.2 972 3/14/2022
7.0.0-preview.1.22109.13 5,007 2/17/2022
6.0.36 453,064 11/12/2024
6.0.35 167,487 10/8/2024
6.0.33 701,229 8/13/2024
6.0.32 251,687 7/9/2024
6.0.31 393,020 5/28/2024
6.0.30 138,582 5/14/2024
6.0.29 607,977 4/9/2024
6.0.28 363,401 3/12/2024
6.0.27 554,148 2/13/2024
6.0.26 817,468 1/9/2024
6.0.25 1,452,685 11/14/2023
6.0.24 788,634 10/24/2023
6.0.23 528,770 10/10/2023
6.0.22 865,221 9/12/2023
6.0.21 1,236,999 8/8/2023
6.0.20 1,135,204 7/11/2023
6.0.19 695,184 6/22/2023
6.0.18 455,270 6/13/2023
6.0.16 2,358,917 4/11/2023
6.0.15 1,268,430 3/14/2023
6.0.14 1,638,542 2/14/2023
6.0.13 2,127,972 1/10/2023
6.0.12 2,395,362 12/13/2022
6.0.11 2,629,579 11/7/2022
6.0.10 4,028,520 10/11/2022
6.0.9 3,079,302 9/13/2022
6.0.8 3,920,387 8/9/2022
6.0.7 3,341,525 7/12/2022
6.0.6 2,452,917 6/14/2022
6.0.5 3,073,669 5/10/2022
6.0.4 2,812,110 4/11/2022
6.0.3 3,056,140 3/8/2022
6.0.2 2,947,252 2/8/2022
6.0.1 4,305,763 12/14/2021
6.0.0 4,804,084 11/8/2021
6.0.0-rc.2.21480.10 201,264 10/12/2021
6.0.0-rc.1.21452.15 171,092 9/14/2021
6.0.0-preview.7.21378.6 7,314 8/10/2021
6.0.0-preview.6.21355.2 4,134 7/14/2021
6.0.0-preview.5.21301.17 3,068 6/15/2021
6.0.0-preview.4.21253.5 2,506 5/24/2021
6.0.0-preview.3.21201.13 2,842 4/8/2021
6.0.0-preview.2.21154.6 819 3/11/2021 6.0.0-preview.2.21154.6 is deprecated because it is no longer maintained.
6.0.0-preview.1.21103.6 921 2/12/2021 6.0.0-preview.1.21103.6 is deprecated because it is no longer maintained.
5.0.17 671,040 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 106,943 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 210,331 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 205,441 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 494,106 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 596,705 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 1,034,130 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 1,053,388 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 1,160,633 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 917,444 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 1,186,438 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 929,798 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 1,360,753 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 821,826 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 982,608 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 935,474 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 563,934 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 1,583,170 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.17 14,872 10/13/2020 5.0.0-rc.2.20475.17 is deprecated because it is no longer maintained.
5.0.0-rc.1.20451.17 7,739 9/14/2020 5.0.0-rc.1.20451.17 is deprecated because it is no longer maintained.
5.0.0-preview.8.20414.8 9,108 8/25/2020 5.0.0-preview.8.20414.8 is deprecated because it is no longer maintained.
5.0.0-preview.7.20365.19 3,548 7/21/2020 5.0.0-preview.7.20365.19 is deprecated because it is no longer maintained.
5.0.0-preview.6.20312.15 2,004 6/25/2020 5.0.0-preview.6.20312.15 is deprecated because it is no longer maintained.
5.0.0-preview.5.20279.2 833 6/10/2020 5.0.0-preview.5.20279.2 is deprecated because it is no longer maintained.
5.0.0-preview.4.20257.10 1,460 5/18/2020 5.0.0-preview.4.20257.10 is deprecated because it is no longer maintained.
5.0.0-preview.3.20215.14 1,840 4/23/2020 5.0.0-preview.3.20215.14 is deprecated because it is no longer maintained.
5.0.0-preview.2.20167.3 834 4/2/2020 5.0.0-preview.2.20167.3 is deprecated because it is no longer maintained.
5.0.0-preview.1.20124.5 1,067 3/16/2020 5.0.0-preview.1.20124.5 is deprecated because it is no longer maintained.
3.1.32 425,766 12/13/2022
3.1.31 92,781 11/8/2022
3.1.30 774,097 10/11/2022
3.1.29 69,249 9/13/2022
3.1.28 114,601 8/9/2022
3.1.27 108,394 7/12/2022
3.1.26 119,149 6/14/2022
3.1.25 137,515 5/10/2022
3.1.24 137,656 4/11/2022
3.1.23 204,306 3/8/2022
3.1.22 584,891 12/14/2021
3.1.21 431,901 11/7/2021
3.1.20 378,194 10/11/2021
3.1.19 267,593 9/14/2021
3.1.18 796,509 8/10/2021
3.1.17 566,123 7/13/2021
3.1.16 488,760 6/8/2021
3.1.15 436,716 5/11/2021
3.1.14 770,134 4/6/2021
3.1.13 903,135 3/9/2021
3.1.12 548,651 2/9/2021
3.1.11 695,665 1/12/2021
3.1.10 2,125,801 11/9/2020
3.1.9 2,315,342 10/13/2020
3.1.8 2,026,016 9/8/2020
3.1.7 1,568,246 8/11/2020
3.1.6 1,761,188 7/14/2020
3.1.5 2,117,052 6/9/2020
3.1.4 1,486,772 5/12/2020
3.1.3 2,396,762 3/24/2020
3.1.2 1,985,960 2/18/2020
3.1.1 1,782,802 1/14/2020
3.1.0 2,135,052 12/3/2019
3.1.0-preview3.19555.2 2,230 11/13/2019 3.1.0-preview3.19555.2 is deprecated because it is no longer maintained.
3.1.0-preview2.19528.8 1,014 11/1/2019 3.1.0-preview2.19528.8 is deprecated because it is no longer maintained.
3.1.0-preview1.19508.20 1,479 10/15/2019 3.1.0-preview1.19508.20 is deprecated because it is no longer maintained.
3.0.3 108,269 2/18/2020 3.0.3 is deprecated because it is no longer maintained.
3.0.2 57,917 1/14/2020 3.0.2 is deprecated because it is no longer maintained.
3.0.0 2,855,890 9/23/2019 3.0.0 is deprecated because it is no longer maintained.
3.0.0-rc1.19457.4 10,523 9/16/2019 3.0.0-rc1.19457.4 is deprecated because it is no longer maintained.
3.0.0-preview9.19424.4 5,023 9/4/2019 3.0.0-preview9.19424.4 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.7 14,876 8/13/2019 3.0.0-preview8.19405.7 is deprecated because it is no longer maintained.
3.0.0-preview7.19365.7 5,754 7/23/2019 3.0.0-preview7.19365.7 is deprecated because it is no longer maintained.
3.0.0-preview6.19307.2 4,567 6/12/2019 3.0.0-preview6.19307.2 is deprecated because it is no longer maintained.
3.0.0-preview5-19227-01 13,919 5/6/2019 3.0.0-preview5-19227-01 is deprecated because it is no longer maintained.
3.0.0-preview4-19216-03 1,988 4/18/2019 3.0.0-preview4-19216-03 is deprecated because it is no longer maintained.
3.0.0-preview3-19153-02 1,449 3/6/2019 3.0.0-preview3-19153-02 is deprecated because it is no longer maintained.
3.0.0-preview-19075-0444 3,595 1/29/2019 3.0.0-preview-19075-0444 is deprecated because it is no longer maintained.
3.0.0-preview-18579-0056 3,116 12/3/2018 3.0.0-preview-18579-0056 is deprecated because it is no longer maintained.
2.3.0 2,639 1/14/2025
2.2.0 6,551,868 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 16,023 10/17/2018 2.2.0-preview3-35497 is deprecated because it is no longer maintained.
2.2.0-preview2-35157 4,127 9/12/2018 2.2.0-preview2-35157 is deprecated because it is no longer maintained.
2.2.0-preview1-35029 7,242 8/22/2018 2.2.0-preview1-35029 is deprecated because it is no longer maintained.
2.1.3 1,470,333 10/1/2018
2.1.2 363,268 8/21/2018
2.1.1 992,740 6/18/2018
2.1.0 838,241 5/29/2018
2.1.0-rc1-final 20,776 5/6/2018 2.1.0-rc1-final is deprecated because it is no longer maintained.
2.1.0-preview2-final 4,787 4/10/2018 2.1.0-preview2-final is deprecated because it is no longer maintained.
2.1.0-preview1-final 3,742 2/26/2018 2.1.0-preview1-final is deprecated because it is no longer maintained.