Microsoft.AspNetCore.TestHost 11.0.0-preview.2.26159.112
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: AnIServerimplementation 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.
Showing the top 20 packages that depend on Microsoft.AspNetCore.TestHost.
| Packages | 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/aspnet/AspNetCore/tree/0c26925a185ba2996051c0f37a995ef0a682cf54
|
22 |
|
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/aspnetcore/tree/954f61dd38b33caa2b736c73530bd5a294174437
|
21 |
|
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/aspnetcore/tree/4e7d976438b0fc17f435804e801d5d68d193ec33
|
19 |
|
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/aspnetcore/tree/b92c9f50f0333ea661785ba849f303cde6a93844
|
18 |
|
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/aspnetcore/tree/379bfc7b2559e7cc9f42f997a497b2f2dd8e12d2
|
17 |
|
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/aspnetcore/tree/febee99db845fd8766a13bdb391a07c3ee90b4ba
|
16 |
|
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/aspnetcore/tree/88ca061d20b28892b28279b17bad46919cff49a4
|
14 |
|
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/aspnetcore/tree/ed74665e773dd1ebea3289c5662d71c590305932
|
14 |
|
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/aspnetcore/tree/ada5ad97d2114250a05550cb28cc18b9cf9f8993
|
14 |
|
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/aspnetcore/tree/3dfc6fda80a10797b8c8fda1970e7b377fd8ed8d
|
13 |
|
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/aspnetcore/tree/371a26f07b23ad77c636332c2dfc0cbd1d8137ba
|
12 |
|
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/aspnetcore/tree/bb01bbf4433e27289b99001b7de6a582879d1835
|
12 |
|
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/aspnetcore/tree/2670c128d522473e146ff9f8159bfffdfe694cd9
|
12 |
|
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/aspnetcore/tree/009e1ccafde4086ea52999e878f6e7aa5a7c4ccf
|
12 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/aspnet/Mvc/tree/a6199bbfbab05583f987bae322fb04566841aaea
|
12 |
|
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/aspnetcore/tree/e882394a7bb38930da748291fe2c2ceaa6a80588
|
12 |
|
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/aspnetcore/tree/e56abc45c4f8adc518abfc11a59849d616431e2c
|
12 |
|
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/aspnetcore/tree/7c810658463f35c39c54d5fb8a8dbbfd463bf747
|
12 |
|
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/aspnetcore/tree/827b96040e62e5aa47d829bfa61c000d315d4f2e
|
12 |
|
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/aspnetcore/tree/70048beee894074e9718206a0017d9b080ee66ff
|
12 |
.NET 11.0
- No dependencies.
| Version | Downloads | Last updated |
|---|---|---|
| 11.0.0-preview.2.26159.112 | 3 | 3/13/2026 |
| 11.0.0-preview.1.26104.118 | 4 | 2/15/2026 |
| 10.0.5 | 2 | 3/15/2026 |
| 10.0.4 | 4 | 3/12/2026 |
| 10.0.3 | 1 | 2/20/2026 |
| 10.0.2 | 4 | 1/15/2026 |
| 10.0.1 | 6 | 12/18/2025 |
| 10.0.0 | 6 | 11/18/2025 |
| 10.0.0-rc.2.25502.107 | 7 | 10/21/2025 |
| 10.0.0-rc.1.25451.107 | 9 | 9/16/2025 |
| 10.0.0-preview.7.25380.108 | 9 | 9/2/2025 |
| 10.0.0-preview.6.25358.103 | 10 | 9/3/2025 |
| 10.0.0-preview.5.25277.114 | 2 | 6/21/2025 |
| 10.0.0-preview.4.25258.110 | 10 | 6/21/2025 |
| 10.0.0-preview.3.25172.1 | 2 | 6/13/2025 |
| 10.0.0-preview.2.25164.1 | 11 | 6/21/2025 |
| 10.0.0-preview.1.25120.3 | 8 | 6/21/2025 |
| 9.0.14 | 3 | 3/14/2026 |
| 9.0.13 | 3 | 2/16/2026 |
| 9.0.12 | 3 | 1/16/2026 |
| 9.0.11 | 5 | 11/19/2025 |
| 9.0.10 | 7 | 10/23/2025 |
| 9.0.9 | 9 | 9/17/2025 |
| 9.0.8 | 9 | 9/4/2025 |
| 9.0.7 | 9 | 9/3/2025 |
| 9.0.6 | 13 | 6/21/2025 |
| 9.0.5 | 11 | 6/21/2025 |
| 9.0.4 | 10 | 6/21/2025 |
| 9.0.3 | 11 | 6/21/2025 |
| 9.0.2 | 9 | 6/21/2025 |
| 9.0.1 | 11 | 6/21/2025 |
| 9.0.0 | 10 | 6/21/2025 |
| 9.0.0-rc.2.24474.3 | 11 | 6/21/2025 |
| 9.0.0-rc.1.24452.1 | 10 | 6/21/2025 |
| 9.0.0-preview.7.24406.2 | 9 | 6/21/2025 |
| 9.0.0-preview.6.24328.4 | 10 | 6/21/2025 |
| 9.0.0-preview.5.24306.11 | 8 | 6/21/2025 |
| 9.0.0-preview.4.24267.6 | 10 | 6/21/2025 |
| 9.0.0-preview.3.24172.13 | 10 | 6/21/2025 |
| 9.0.0-preview.2.24128.4 | 9 | 7/19/2025 |
| 9.0.0-preview.1.24081.5 | 11 | 6/21/2025 |
| 8.0.25 | 2 | 3/14/2026 |
| 8.0.24 | 3 | 2/17/2026 |
| 8.0.23 | 4 | 1/16/2026 |
| 8.0.22 | 6 | 11/19/2025 |
| 8.0.21 | 7 | 10/22/2025 |
| 8.0.20 | 7 | 9/17/2025 |
| 8.0.19 | 10 | 9/3/2025 |
| 8.0.18 | 8 | 9/3/2025 |
| 8.0.17 | 8 | 6/21/2025 |
| 8.0.16 | 9 | 6/21/2025 |
| 8.0.15 | 9 | 6/21/2025 |
| 8.0.14 | 8 | 6/21/2025 |
| 8.0.13 | 10 | 6/21/2025 |
| 8.0.12 | 9 | 6/21/2025 |
| 8.0.11 | 10 | 6/21/2025 |
| 8.0.10 | 9 | 6/21/2025 |
| 8.0.8 | 13 | 6/21/2025 |
| 8.0.7 | 10 | 6/21/2025 |
| 8.0.6 | 10 | 6/21/2025 |
| 8.0.5 | 10 | 6/21/2025 |
| 8.0.4 | 14 | 6/21/2025 |
| 8.0.3 | 11 | 6/21/2025 |
| 8.0.2 | 12 | 6/21/2025 |
| 8.0.1 | 11 | 6/21/2025 |
| 8.0.0 | 11 | 6/21/2025 |
| 8.0.0-rc.2.23480.2 | 9 | 6/8/2025 |
| 8.0.0-rc.1.23421.29 | 10 | 6/21/2025 |
| 8.0.0-preview.7.23375.9 | 11 | 6/21/2025 |
| 8.0.0-preview.6.23329.11 | 10 | 7/19/2025 |
| 8.0.0-preview.5.23302.2 | 9 | 6/21/2025 |
| 8.0.0-preview.4.23260.4 | 7 | 6/21/2025 |
| 8.0.0-preview.3.23177.8 | 9 | 6/21/2025 |
| 8.0.0-preview.2.23153.2 | 11 | 6/21/2025 |
| 8.0.0-preview.1.23112.2 | 9 | 6/21/2025 |
| 7.0.20 | 9 | 6/21/2025 |
| 7.0.19 | 8 | 6/21/2025 |
| 7.0.18 | 9 | 6/21/2025 |
| 7.0.17 | 11 | 6/21/2025 |
| 7.0.16 | 12 | 6/21/2025 |
| 7.0.15 | 8 | 6/21/2025 |
| 7.0.14 | 9 | 7/19/2025 |
| 7.0.13 | 10 | 6/6/2025 |
| 7.0.12 | 10 | 6/21/2025 |
| 7.0.11 | 15 | 6/7/2025 |
| 7.0.10 | 9 | 6/21/2025 |
| 7.0.9 | 10 | 6/21/2025 |
| 7.0.8 | 9 | 6/21/2025 |
| 7.0.7 | 10 | 6/21/2025 |
| 7.0.5 | 10 | 6/21/2025 |
| 7.0.4 | 9 | 6/21/2025 |
| 7.0.3 | 11 | 6/21/2025 |
| 7.0.2 | 9 | 6/21/2025 |
| 7.0.1 | 10 | 6/21/2025 |
| 7.0.0 | 10 | 6/21/2025 |
| 7.0.0-rc.2.22476.2 | 10 | 6/21/2025 |
| 7.0.0-rc.1.22427.2 | 9 | 6/21/2025 |
| 7.0.0-preview.7.22376.6 | 9 | 6/21/2025 |
| 7.0.0-preview.6.22330.3 | 10 | 6/21/2025 |
| 7.0.0-preview.5.22303.8 | 10 | 6/8/2025 |
| 7.0.0-preview.4.22251.1 | 10 | 6/21/2025 |
| 7.0.0-preview.3.22178.4 | 10 | 6/21/2025 |
| 7.0.0-preview.2.22153.2 | 8 | 6/21/2025 |
| 7.0.0-preview.1.22109.13 | 10 | 6/21/2025 |
| 6.0.36 | 9 | 6/21/2025 |
| 6.0.35 | 10 | 6/21/2025 |
| 6.0.33 | 10 | 6/21/2025 |
| 6.0.32 | 9 | 6/21/2025 |
| 6.0.31 | 8 | 6/21/2025 |
| 6.0.30 | 9 | 6/21/2025 |
| 6.0.29 | 9 | 6/21/2025 |
| 6.0.28 | 10 | 6/18/2025 |
| 6.0.27 | 9 | 6/21/2025 |
| 6.0.26 | 8 | 6/21/2025 |
| 6.0.25 | 8 | 6/21/2025 |
| 6.0.24 | 11 | 6/21/2025 |
| 6.0.23 | 11 | 6/21/2025 |
| 6.0.22 | 12 | 6/21/2025 |
| 6.0.21 | 10 | 6/21/2025 |
| 6.0.20 | 11 | 6/21/2025 |
| 6.0.19 | 9 | 6/21/2025 |
| 6.0.18 | 7 | 6/21/2025 |
| 6.0.16 | 10 | 7/18/2025 |
| 6.0.15 | 10 | 6/21/2025 |
| 6.0.14 | 9 | 6/21/2025 |
| 6.0.13 | 10 | 6/21/2025 |
| 6.0.12 | 8 | 6/21/2025 |
| 6.0.11 | 8 | 6/21/2025 |
| 6.0.10 | 8 | 6/21/2025 |
| 6.0.9 | 7 | 7/19/2025 |
| 6.0.8 | 11 | 6/30/2025 |
| 6.0.7 | 10 | 6/21/2025 |
| 6.0.6 | 7 | 6/21/2025 |
| 6.0.5 | 11 | 6/30/2025 |
| 6.0.4 | 11 | 6/21/2025 |
| 6.0.3 | 9 | 6/21/2025 |
| 6.0.2 | 10 | 6/21/2025 |
| 6.0.1 | 11 | 6/21/2025 |
| 6.0.0 | 11 | 6/21/2025 |
| 6.0.0-rc.2.21480.10 | 9 | 6/21/2025 |
| 6.0.0-rc.1.21452.15 | 11 | 6/21/2025 |
| 6.0.0-preview.7.21378.6 | 9 | 6/21/2025 |
| 6.0.0-preview.6.21355.2 | 11 | 6/21/2025 |
| 6.0.0-preview.5.21301.17 | 9 | 6/21/2025 |
| 6.0.0-preview.4.21253.5 | 11 | 6/21/2025 |
| 6.0.0-preview.3.21201.13 | 10 | 6/21/2025 |
| 6.0.0-preview.2.21154.6 | 9 | 6/21/2025 |
| 6.0.0-preview.1.21103.6 | 10 | 7/14/2025 |
| 5.0.17 | 15 | 6/11/2025 |
| 5.0.16 | 8 | 6/21/2025 |
| 5.0.15 | 8 | 6/21/2025 |
| 5.0.14 | 9 | 6/21/2025 |
| 5.0.13 | 11 | 6/21/2025 |
| 5.0.12 | 8 | 6/21/2025 |
| 5.0.11 | 9 | 6/21/2025 |
| 5.0.10 | 9 | 6/21/2025 |
| 5.0.9 | 11 | 6/21/2025 |
| 5.0.8 | 9 | 6/21/2025 |
| 5.0.7 | 10 | 6/21/2025 |
| 5.0.6 | 10 | 6/21/2025 |
| 5.0.5 | 9 | 6/30/2025 |
| 5.0.4 | 9 | 6/21/2025 |
| 5.0.3 | 12 | 6/21/2025 |
| 5.0.2 | 9 | 6/21/2025 |
| 5.0.1 | 9 | 6/21/2025 |
| 5.0.0 | 10 | 6/21/2025 |
| 5.0.0-rc.2.20475.17 | 10 | 6/21/2025 |
| 5.0.0-rc.1.20451.17 | 9 | 6/21/2025 |
| 5.0.0-preview.8.20414.8 | 9 | 6/21/2025 |
| 5.0.0-preview.7.20365.19 | 10 | 6/21/2025 |
| 5.0.0-preview.6.20312.15 | 10 | 6/21/2025 |
| 5.0.0-preview.5.20279.2 | 10 | 6/21/2025 |
| 5.0.0-preview.4.20257.10 | 9 | 6/21/2025 |
| 5.0.0-preview.3.20215.14 | 11 | 6/21/2025 |
| 5.0.0-preview.2.20167.3 | 13 | 6/8/2025 |
| 5.0.0-preview.1.20124.5 | 9 | 6/21/2025 |
| 3.1.32 | 8 | 6/21/2025 |
| 3.1.31 | 9 | 6/21/2025 |
| 3.1.30 | 10 | 6/21/2025 |
| 3.1.29 | 7 | 7/19/2025 |
| 3.1.28 | 10 | 6/21/2025 |
| 3.1.27 | 12 | 6/15/2025 |
| 3.1.26 | 9 | 6/21/2025 |
| 3.1.25 | 16 | 6/7/2025 |
| 3.1.24 | 9 | 6/21/2025 |
| 3.1.23 | 10 | 6/21/2025 |
| 3.1.22 | 8 | 9/3/2025 |
| 3.1.21 | 11 | 6/21/2025 |
| 3.1.20 | 9 | 6/21/2025 |
| 3.1.19 | 8 | 6/21/2025 |
| 3.1.18 | 9 | 9/3/2025 |
| 3.1.17 | 9 | 6/21/2025 |
| 3.1.16 | 8 | 6/21/2025 |
| 3.1.15 | 9 | 6/21/2025 |
| 3.1.14 | 9 | 6/21/2025 |
| 3.1.13 | 9 | 6/21/2025 |
| 3.1.12 | 10 | 6/21/2025 |
| 3.1.11 | 9 | 6/21/2025 |
| 3.1.10 | 7 | 6/21/2025 |
| 3.1.9 | 10 | 6/21/2025 |
| 3.1.8 | 9 | 6/30/2025 |
| 3.1.7 | 10 | 6/21/2025 |
| 3.1.6 | 12 | 6/21/2025 |
| 3.1.5 | 9 | 6/21/2025 |
| 3.1.4 | 14 | 6/21/2025 |
| 3.1.3 | 11 | 6/21/2025 |
| 3.1.2 | 11 | 6/21/2025 |
| 3.1.1 | 11 | 6/21/2025 |
| 3.1.0 | 9 | 6/21/2025 |
| 3.1.0-preview3.19555.2 | 16 | 6/7/2025 |
| 3.1.0-preview2.19528.8 | 11 | 6/21/2025 |
| 3.1.0-preview1.19508.20 | 9 | 6/21/2025 |
| 3.0.3 | 10 | 6/21/2025 |
| 3.0.2 | 12 | 6/21/2025 |
| 3.0.0 | 12 | 6/30/2025 |
| 3.0.0-rc1.19457.4 | 9 | 9/3/2025 |
| 3.0.0-preview9.19424.4 | 10 | 6/21/2025 |
| 3.0.0-preview8.19405.7 | 10 | 6/21/2025 |
| 3.0.0-preview7.19365.7 | 9 | 6/21/2025 |
| 3.0.0-preview6.19307.2 | 10 | 6/21/2025 |
| 3.0.0-preview5-19227-01 | 9 | 6/21/2025 |
| 3.0.0-preview4-19216-03 | 7 | 6/21/2025 |
| 3.0.0-preview3-19153-02 | 10 | 6/21/2025 |
| 3.0.0-preview-19075-0444 | 10 | 6/21/2025 |
| 3.0.0-preview-18579-0056 | 9 | 6/21/2025 |
| 2.3.9 | 2 | 1/10/2026 |
| 2.3.8 | 4 | 1/9/2026 |
| 2.3.0 | 10 | 6/21/2025 |
| 2.2.0 | 8 | 6/21/2025 |
| 2.2.0-preview3-35497 | 9 | 6/21/2025 |
| 2.2.0-preview2-35157 | 11 | 6/21/2025 |
| 2.2.0-preview1-35029 | 10 | 6/21/2025 |
| 2.1.1 | 10 | 6/21/2025 |
| 2.1.0 | 11 | 6/12/2025 |
| 2.1.0-rc1-final | 9 | 6/21/2025 |
| 2.1.0-preview2-final | 9 | 6/21/2025 |
| 2.1.0-preview1-final | 9 | 6/21/2025 |
| 2.0.3 | 10 | 6/21/2025 |
| 2.0.2 | 10 | 6/21/2025 |
| 2.0.1 | 11 | 6/21/2025 |
| 2.0.0 | 11 | 6/21/2025 |
| 2.0.0-preview2-final | 9 | 6/21/2025 |
| 2.0.0-preview1-final | 9 | 6/21/2025 |
| 1.1.3 | 9 | 6/21/2025 |
| 1.1.2 | 10 | 6/21/2025 |
| 1.1.1 | 10 | 6/21/2025 |
| 1.1.0 | 10 | 6/30/2025 |
| 1.1.0-preview1-final | 10 | 6/21/2025 |
| 1.0.5 | 11 | 6/21/2025 |
| 1.0.4 | 12 | 6/21/2025 |
| 1.0.3 | 10 | 6/21/2025 |
| 1.0.2 | 9 | 6/21/2025 |
| 1.0.1 | 10 | 6/21/2025 |
| 1.0.0 | 10 | 6/21/2025 |
| 1.0.0-rc2-final | 10 | 6/21/2025 |