Microsoft.AspNetCore.TestHost
10.0.0-preview.7.25380.108
Prefix Reserved
See the version list below for details.
dotnet add package Microsoft.AspNetCore.TestHost --version 10.0.0-preview.7.25380.108
NuGet\Install-Package Microsoft.AspNetCore.TestHost -Version 10.0.0-preview.7.25380.108
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="10.0.0-preview.7.25380.108" />
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="10.0.0-preview.7.25380.108" />
<PackageReference Include="Microsoft.AspNetCore.TestHost" />
paket add Microsoft.AspNetCore.TestHost --version 10.0.0-preview.7.25380.108
#r "nuget: Microsoft.AspNetCore.TestHost, 10.0.0-preview.7.25380.108"
#:package Microsoft.AspNetCore.TestHost@10.0.0-preview.7.25380.108
#addin nuget:?package=Microsoft.AspNetCore.TestHost&version=10.0.0-preview.7.25380.108&prerelease
#tool nuget:?package=Microsoft.AspNetCore.TestHost&version=10.0.0-preview.7.25380.108&prerelease
About
Microsoft.AspNetCore.TestHost
provides an ASP.NET Core web server for testing middleware in isolation.
Key Features
- Instantiate an app pipeline containing only the components that you need to test
- Send custom requests to verify middleware behavior
How to Use
To use Microsoft.AspNetCore.TestHost
, follow these steps:
Installation
dotnet add package Microsoft.AspNetCore.TestHost
Usage
To set up the TestServer
, configure it in your test project. Here's an example:
[Fact]
public async Task MiddlewareTest_ReturnsNotFoundForRequest()
{
// Build and start a host that uses TestServer
using var host = await new HostBuilder()
.ConfigureWebHost(builder =>
{
builder.UseTestServer()
.ConfigureServices(services =>
{
// Add any required services that the middleware uses
services.AddMyServices();
})
.Configure(app =>
{
// Configure the processing pipeline to use the middleware
// for the test
app.UseMiddleware<MyMiddleware>();
});
})
.StartAsync();
var response = await host.GetTestClient().GetAsync("/");
Assert.Equal(HttpStatusCode.NotFound, response.StatusCode);
}
Main Types
The main types provided by this package are:
TestServer
: AnIServer
implementation for executing testsTestServerOptions
: Provides options for configuring aTestServer
Additional Documentation
For additional documentation and examples, refer to the official documentation for testing middleware in ASP.NET Core.
Feedback & Contributing
Microsoft.AspNetCore.TestHost
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
- No dependencies.
NuGet packages (184)
Showing the top 5 NuGet packages that depend on Microsoft.AspNetCore.TestHost:
Package | Downloads |
---|---|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications. This package was built from the source code at https://github.com/dotnet/dotnet/tree/2db1f5ee2bdda2e8d873769325fabede32e420e0 |
|
Rystem.Test.XUnit
Rystem is a open-source framework to improve the System namespace in .Net |
|
Acheve.TestHost
Achve.TestHost is a nuget package to improve TestServer experiences. For more information see http://github.com/Xabaril/Acheve.TestHost |
|
Volo.Abp.AspNetCore.TestBase
Package Description |
|
MyTested.AspNetCore.Mvc.Abstractions
My Tested ASP.NET Core MVC common abstractions and interfaces. |
GitHub repositories (221)
Showing the top 20 popular GitHub repositories that depend on Microsoft.AspNetCore.TestHost:
Repository | Stars |
---|---|
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/yarp
A toolkit for developing high-performance HTTP reverse proxy applications.
|
|
dotnet/eShop
A reference .NET application implementing an eCommerce site
|
|
ThreeMammals/Ocelot
.NET API Gateway
|
|
RicoSuter/NSwag
The Swagger/OpenAPI toolchain for .NET, ASP.NET Core and TypeScript.
|
|
ldqk/Masuit.Tools
全龄段友好的C#万能工具库,码数吐司库,包含一些常用的操作类,大都是静态类,加密解密,反射操作,权重随机筛选算法,分布式短id,表达式树,linq扩展,文件压缩,多线程下载,硬件信息,字符串扩展方法,日期时间扩展操作,中国农历,大文件拷贝,图像裁剪,验证码,断点续传,集合扩展、Excel导出等常用封装。诸多功能集一身,代码量不到2MB!
|
|
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.
|
|
aspnet/Mvc
[Archived] ASP.NET Core MVC is a model view controller framework for building dynamic web sites with clean separation of concerns, including the merged MVC, Web API, and Web Pages w/ Razor. Project moved to https://github.com/aspnet/AspNetCore
|
|
ChilliCream/graphql-platform
Welcome to the home of the Hot Chocolate GraphQL server for .NET, the Strawberry Shake GraphQL client for .NET and Nitro the awesome Monaco based GraphQL IDE.
|
|
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
|
|
openiddict/openiddict-core
Flexible and versatile OAuth 2.0/OpenID Connect stack for .NET
|
|
dotnet/aspire
Tools, templates, and packages to accelerate building observable, production-ready apps
|
|
dotnetcore/Util
Util是一个.Net平台下的应用框架,旨在提升中小团队的开发能力,由工具类、分层架构基类、Ui组件,配套代码生成模板,权限等组成。
|
|
opserver/Opserver
Stack Exchange's Monitoring System
|
|
grpc/grpc-dotnet
gRPC for .NET
|
|
Xabaril/AspNetCore.Diagnostics.HealthChecks
Enterprise HealthChecks for ASP.NET Core Diagnostics Package
|
|
Ombi-app/Ombi
Want a Movie or TV Show on Plex/Emby/Jellyfin? Use Ombi!
|
Version | Downloads | Last Updated | |
---|---|---|---|
10.0.0-rc.1.25451.107 | 3,013 | 9/9/2025 | |
10.0.0-preview.7.25380.108 | 22,223 | 8/12/2025 | |
10.0.0-preview.6.25358.103 | 3,856 | 7/15/2025 | |
10.0.0-preview.5.25277.114 | 29,828 | 6/6/2025 | |
10.0.0-preview.4.25258.110 | 4,991 | 5/12/2025 | |
10.0.0-preview.3.25172.1 | 6,938 | 4/10/2025 | |
10.0.0-preview.2.25164.1 | 2,449 | 3/18/2025 | |
10.0.0-preview.1.25120.3 | 77,899 | 2/25/2025 | |
9.0.9 | 94,613 | 9/9/2025 | |
9.0.8 | 982,808 | 8/5/2025 | |
9.0.7 | 830,700 | 7/8/2025 | |
9.0.6 | 1,131,694 | 6/10/2025 | |
9.0.5 | 1,817,816 | 5/13/2025 | |
9.0.4 | 2,078,119 | 4/8/2025 | |
9.0.3 | 1,627,193 | 3/11/2025 | |
9.0.2 | 1,752,203 | 2/11/2025 | |
9.0.1 | 1,512,130 | 1/14/2025 | |
9.0.0 | 3,413,259 | 11/12/2024 | |
9.0.0-rc.2.24474.3 | 60,325 | 10/8/2024 | |
9.0.0-rc.1.24452.1 | 41,437 | 9/10/2024 | |
9.0.0-preview.7.24406.2 | 8,785 | 8/13/2024 | |
9.0.0-preview.6.24328.4 | 12,594 | 7/9/2024 | |
9.0.0-preview.5.24306.11 | 4,240 | 6/11/2024 | |
9.0.0-preview.4.24267.6 | 2,781 | 5/21/2024 | |
9.0.0-preview.3.24172.13 | 70,404 | 4/11/2024 | |
9.0.0-preview.2.24128.4 | 4,040 | 3/12/2024 | |
9.0.0-preview.1.24081.5 | 27,589 | 2/13/2024 | |
8.0.20 | 70,745 | 9/9/2025 | |
8.0.19 | 751,043 | 8/4/2025 | |
8.0.18 | 528,461 | 7/8/2025 | |
8.0.17 | 1,067,672 | 6/10/2025 | |
8.0.16 | 1,025,701 | 5/13/2025 | |
8.0.15 | 1,726,682 | 4/8/2025 | |
8.0.14 | 1,816,196 | 3/11/2025 | |
8.0.13 | 2,139,304 | 2/11/2025 | |
8.0.12 | 2,039,146 | 1/14/2025 | |
8.0.11 | 5,930,649 | 11/12/2024 | |
8.0.10 | 7,948,374 | 10/8/2024 | |
8.0.8 | 9,086,337 | 8/13/2024 | |
8.0.7 | 6,485,511 | 7/9/2024 | |
8.0.6 | 6,238,139 | 5/28/2024 | |
8.0.5 | 2,421,428 | 5/14/2024 | |
8.0.4 | 6,077,615 | 4/9/2024 | |
8.0.3 | 4,014,641 | 3/12/2024 | |
8.0.2 | 3,924,328 | 2/13/2024 | |
8.0.1 | 4,433,762 | 1/9/2024 | |
8.0.0 | 7,240,561 | 11/14/2023 | |
8.0.0-rc.2.23480.2 | 65,257 | 10/10/2023 | |
8.0.0-rc.1.23421.29 | 66,950 | 9/12/2023 | |
8.0.0-preview.7.23375.9 | 13,508 | 8/8/2023 | |
8.0.0-preview.6.23329.11 | 44,106 | 7/11/2023 | |
8.0.0-preview.5.23302.2 | 12,900 | 6/13/2023 | |
8.0.0-preview.4.23260.4 | 262,348 | 5/16/2023 | |
8.0.0-preview.3.23177.8 | 3,417 | 4/11/2023 | |
8.0.0-preview.2.23153.2 | 1,897 | 3/14/2023 | |
8.0.0-preview.1.23112.2 | 41,571 | 2/21/2023 | |
7.0.20 | 606,535 | 5/28/2024 | |
7.0.19 | 100,066 | 5/14/2024 | |
7.0.18 | 229,471 | 4/9/2024 | |
7.0.17 | 457,290 | 3/12/2024 | |
7.0.16 | 465,619 | 2/13/2024 | |
7.0.15 | 674,165 | 1/9/2024 | |
7.0.14 | 1,106,657 | 11/14/2023 | |
7.0.13 | 2,200,130 | 10/24/2023 | |
7.0.12 | 1,111,320 | 10/10/2023 | |
7.0.11 | 3,406,112 | 9/12/2023 | |
7.0.10 | 1,838,758 | 8/8/2023 | |
7.0.9 | 1,402,186 | 7/11/2023 | |
7.0.8 | 1,147,197 | 6/22/2023 | |
7.0.7 | 577,429 | 6/13/2023 | |
7.0.5 | 3,932,749 | 4/11/2023 | |
7.0.4 | 2,078,582 | 3/14/2023 | |
7.0.3 | 1,832,338 | 2/14/2023 | |
7.0.2 | 1,896,001 | 1/10/2023 | |
7.0.1 | 1,111,770 | 12/13/2022 | |
7.0.0 | 3,756,043 | 11/7/2022 | |
7.0.0-rc.2.22476.2 | 69,315 | 10/11/2022 | |
7.0.0-rc.1.22427.2 | 23,441 | 9/14/2022 | |
7.0.0-preview.7.22376.6 | 10,916 | 8/9/2022 | |
7.0.0-preview.6.22330.3 | 3,935 | 7/12/2022 | |
7.0.0-preview.5.22303.8 | 9,683 | 6/14/2022 | |
7.0.0-preview.4.22251.1 | 2,361 | 5/10/2022 | |
7.0.0-preview.3.22178.4 | 1,368 | 4/13/2022 | |
7.0.0-preview.2.22153.2 | 1,139 | 3/14/2022 | |
7.0.0-preview.1.22109.13 | 5,182 | 2/17/2022 | |
6.0.36 | 1,284,451 | 11/12/2024 | |
6.0.35 | 288,782 | 10/8/2024 | |
6.0.33 | 1,222,017 | 8/13/2024 | |
6.0.32 | 390,746 | 7/9/2024 | |
6.0.31 | 596,370 | 5/28/2024 | |
6.0.30 | 203,732 | 5/14/2024 | |
6.0.29 | 849,398 | 4/9/2024 | |
6.0.28 | 517,642 | 3/12/2024 | |
6.0.27 | 963,131 | 2/13/2024 | |
6.0.26 | 1,173,214 | 1/9/2024 | |
6.0.25 | 1,954,832 | 11/14/2023 | |
6.0.24 | 983,535 | 10/24/2023 | |
6.0.23 | 688,305 | 10/10/2023 | |
6.0.22 | 1,150,702 | 9/12/2023 | |
6.0.21 | 1,763,636 | 8/8/2023 | |
6.0.20 | 1,567,856 | 7/11/2023 | |
6.0.19 | 982,306 | 6/22/2023 | |
6.0.18 | 650,600 | 6/13/2023 | |
6.0.16 | 3,409,597 | 4/11/2023 | |
6.0.15 | 2,070,218 | 3/14/2023 | |
6.0.14 | 2,379,082 | 2/14/2023 | |
6.0.13 | 3,174,181 | 1/10/2023 | |
6.0.12 | 2,946,891 | 12/13/2022 | |
6.0.11 | 3,892,333 | 11/7/2022 | |
6.0.10 | 5,473,990 | 10/11/2022 | |
6.0.9 | 4,219,476 | 9/13/2022 | |
6.0.8 | 5,002,186 | 8/9/2022 | |
6.0.7 | 4,426,394 | 7/12/2022 | |
6.0.6 | 3,382,315 | 6/14/2022 | |
6.0.5 | 4,278,647 | 5/10/2022 | |
6.0.4 | 3,964,575 | 4/11/2022 | |
6.0.3 | 4,670,478 | 3/8/2022 | |
6.0.2 | 3,876,873 | 2/8/2022 | |
6.0.1 | 5,825,187 | 12/14/2021 | |
6.0.0 | 6,970,144 | 11/8/2021 | |
6.0.0-rc.2.21480.10 | 209,688 | 10/12/2021 | |
6.0.0-rc.1.21452.15 | 177,366 | 9/14/2021 | |
6.0.0-preview.7.21378.6 | 9,228 | 8/10/2021 | |
6.0.0-preview.6.21355.2 | 5,395 | 7/14/2021 | |
6.0.0-preview.5.21301.17 | 3,721 | 6/15/2021 | |
6.0.0-preview.4.21253.5 | 6,898 | 5/24/2021 | |
6.0.0-preview.3.21201.13 | 5,148 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 1,166 | 3/11/2021 | |
6.0.0-preview.1.21103.6 | 1,547 | 2/12/2021 | |
5.0.17 | 967,784 | 5/10/2022 | |
5.0.16 | 177,391 | 4/11/2022 | |
5.0.15 | 293,143 | 3/8/2022 | |
5.0.14 | 274,935 | 2/8/2022 | |
5.0.13 | 702,750 | 12/14/2021 | |
5.0.12 | 825,889 | 11/7/2021 | |
5.0.11 | 1,476,477 | 10/12/2021 | |
5.0.10 | 1,500,920 | 9/14/2021 | |
5.0.9 | 1,597,761 | 8/10/2021 | |
5.0.8 | 1,257,156 | 7/13/2021 | |
5.0.7 | 1,696,120 | 6/8/2021 | |
5.0.6 | 1,364,223 | 5/11/2021 | |
5.0.5 | 1,928,608 | 4/6/2021 | |
5.0.4 | 1,109,976 | 3/9/2021 | |
5.0.3 | 1,329,941 | 2/9/2021 | |
5.0.2 | 1,331,342 | 1/12/2021 | |
5.0.1 | 924,196 | 12/8/2020 | |
5.0.0 | 2,290,756 | 11/9/2020 | |
5.0.0-rc.2.20475.17 | 18,031 | 10/13/2020 | |
5.0.0-rc.1.20451.17 | 185,095 | 9/14/2020 | |
5.0.0-preview.8.20414.8 | 9,541 | 8/25/2020 | |
5.0.0-preview.7.20365.19 | 4,583 | 7/21/2020 | |
5.0.0-preview.6.20312.15 | 2,273 | 6/25/2020 | |
5.0.0-preview.5.20279.2 | 1,120 | 6/10/2020 | |
5.0.0-preview.4.20257.10 | 1,757 | 5/18/2020 | |
5.0.0-preview.3.20215.14 | 2,258 | 4/23/2020 | |
5.0.0-preview.2.20167.3 | 1,050 | 4/2/2020 | |
5.0.0-preview.1.20124.5 | 1,262 | 3/16/2020 | |
3.1.32 | 734,957 | 12/13/2022 | |
3.1.31 | 172,971 | 11/8/2022 | |
3.1.30 | 713,722 | 10/11/2022 | |
3.1.29 | 124,493 | 9/13/2022 | |
3.1.28 | 172,743 | 8/9/2022 | |
3.1.27 | 188,318 | 7/12/2022 | |
3.1.26 | 180,770 | 6/14/2022 | |
3.1.25 | 244,160 | 5/10/2022 | |
3.1.24 | 207,584 | 4/11/2022 | |
3.1.23 | 372,935 | 3/8/2022 | |
3.1.22 | 963,721 | 12/14/2021 | |
3.1.21 | 769,978 | 11/7/2021 | |
3.1.20 | 674,325 | 10/11/2021 | |
3.1.19 | 473,816 | 9/14/2021 | |
3.1.18 | 1,065,048 | 8/10/2021 | |
3.1.17 | 866,294 | 7/13/2021 | |
3.1.16 | 777,602 | 6/8/2021 | |
3.1.15 | 775,910 | 5/11/2021 | |
3.1.14 | 1,708,764 | 4/6/2021 | |
3.1.13 | 1,258,542 | 3/9/2021 | |
3.1.12 | 993,667 | 2/9/2021 | |
3.1.11 | 1,193,022 | 1/12/2021 | |
3.1.10 | 3,052,534 | 11/9/2020 | |
3.1.9 | 3,234,390 | 10/13/2020 | |
3.1.8 | 3,261,923 | 9/8/2020 | |
3.1.7 | 2,493,309 | 8/11/2020 | |
3.1.6 | 2,433,698 | 7/14/2020 | |
3.1.5 | 3,741,672 | 6/9/2020 | |
3.1.4 | 2,315,528 | 5/12/2020 | |
3.1.3 | 3,880,850 | 3/24/2020 | |
3.1.2 | 2,897,133 | 2/18/2020 | |
3.1.1 | 3,254,912 | 1/14/2020 | |
3.1.0 | 3,391,762 | 12/3/2019 | |
3.1.0-preview3.19555.2 | 3,570 | 11/13/2019 | |
3.1.0-preview2.19528.8 | 1,259 | 11/1/2019 | |
3.1.0-preview1.19508.20 | 1,855 | 10/15/2019 | |
3.0.3 | 248,223 | 2/18/2020 | |
3.0.2 | 95,782 | 1/14/2020 | |
3.0.0 | 4,339,262 | 9/23/2019 | |
3.0.0-rc1.19457.4 | 15,796 | 9/16/2019 | |
3.0.0-preview9.19424.4 | 9,224 | 9/4/2019 | |
3.0.0-preview8.19405.7 | 37,772 | 8/13/2019 | |
3.0.0-preview7.19365.7 | 14,060 | 7/23/2019 | |
3.0.0-preview6.19307.2 | 7,398 | 6/12/2019 | |
3.0.0-preview5-19227-01 | 11,829 | 5/6/2019 | |
3.0.0-preview4-19216-03 | 2,422 | 4/18/2019 | |
3.0.0-preview3-19153-02 | 2,261 | 3/6/2019 | |
3.0.0-preview-19075-0444 | 7,566 | 1/29/2019 | |
3.0.0-preview-18579-0056 | 4,511 | 12/3/2018 | |
2.3.0 | 49,270 | 1/14/2025 | |
2.2.0 | 12,923,936 | 12/3/2018 | |
2.2.0-preview3-35497 | 23,799 | 10/17/2018 | |
2.2.0-preview2-35157 | 13,403 | 9/12/2018 | |
2.2.0-preview1-35029 | 14,026 | 8/22/2018 | |
2.1.1 | 7,355,664 | 6/18/2018 | |
2.1.0 | 1,623,508 | 5/29/2018 | |
2.1.0-rc1-final | 37,647 | 5/6/2018 | |
2.1.0-preview2-final | 13,554 | 4/10/2018 | |
2.1.0-preview1-final | 28,983 | 2/26/2018 | |
2.0.3 | 286,526 | 5/7/2018 | |
2.0.2 | 744,761 | 3/13/2018 | |
2.0.1 | 1,323,494 | 11/14/2017 | |
2.0.0 | 1,021,536 | 8/11/2017 | |
2.0.0-preview2-final | 10,417 | 6/28/2017 | |
2.0.0-preview1-final | 21,152 | 5/10/2017 | |
1.1.3 | 154,123 | 9/20/2017 | |
1.1.2 | 589,252 | 5/9/2017 | |
1.1.1 | 297,302 | 3/6/2017 | |
1.1.0 | 386,236 | 11/16/2016 | |
1.1.0-preview1-final | 5,987 | 10/24/2016 | |
1.0.5 | 42,131 | 11/14/2017 | |
1.0.4 | 22,635 | 9/20/2017 | |
1.0.3 | 75,325 | 5/9/2017 | |
1.0.2 | 184,926 | 3/6/2017 | |
1.0.1 | 32,604 | 12/12/2016 | |
1.0.0 | 318,842 | 6/27/2016 | |
1.0.0-rc2-final | 16,147 | 5/16/2016 |