Microsoft.AspNetCore.TestHost 10.0.11
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/dotnet/aspnetcore/tree/954f61dd38b33caa2b736c73530bd5a294174437
|
1,077 |
|
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/b16286c2284fecf303dbc12a0bb152476d662e44
|
974 |
|
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/d9ba962869d1b1c410ea476b02de2f8e27eec762
|
42 |
|
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/6254f5ca64f85b90327592dff67ea6b2ec0262c6
|
41 |
|
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
|
40 |
|
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
|
40 |
|
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/ef18546e04f9b0127bbd7709b6af054cc18da98a
|
40 |
|
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/a8b33e7593686eaee701cd124daaabff2311634f
|
40 |
|
NSwag.Commands
NSwag: The Swagger API toolchain for .NET and TypeScript
|
39 |
|
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
|
39 |
|
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/568fff703254def7dcd35fda9892bf702d4c81d3
|
39 |
|
NSwag.Commands
NSwag: The Swagger API toolchain for .NET and TypeScript
|
38 |
|
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/5a129191c1a59ef35c9b4c5a04de71ab111c28d2
|
38 |
|
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/617d594f2bf75a8904d3d0e7d68a0bacf8e6763a
|
38 |
|
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
|
38 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
|
38 |
|
NSwag.Commands
NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript
|
37 |
.NET 10.0
- No dependencies.
| Version | Downloads | Last updated |
|---|---|---|
| 11.0.0-preview.7.26381.103 | 10 | 08/13/2026 |
| 11.0.0-preview.6.26359.118 | 15 | 07/17/2026 |
| 11.0.0-preview.5.26302.115 | 21 | 06/10/2026 |
| 11.0.0-preview.4.26230.115 | 27 | 05/14/2026 |
| 11.0.0-preview.3.26207.106 | 34 | 04/14/2026 |
| 11.0.0-preview.2.26159.112 | 34 | 03/14/2026 |
| 11.0.0-preview.1.26104.118 | 34 | 02/11/2026 |
| 10.0.11 | 11 | 08/13/2026 |
| 10.0.10 | 12 | 07/17/2026 |
| 10.0.9 | 13 | 06/10/2026 |
| 10.0.8 | 25 | 05/14/2026 |
| 10.0.7 | 991 | 04/23/2026 |
| 10.0.6 | 32 | 04/14/2026 |
| 10.0.5 | 32 | 03/14/2026 |
| 10.0.4 | 31 | 03/14/2026 |
| 10.0.3 | 36 | 02/12/2026 |
| 10.0.2 | 43 | 01/16/2026 |
| 10.0.1 | 46 | 12/11/2025 |
| 10.0.0 | 36 | 12/20/2025 |
| 10.0.0-rc.2.25502.107 | 35 | 12/20/2025 |
| 10.0.0-rc.1.25451.107 | 35 | 12/19/2025 |
| 10.0.0-preview.7.25380.108 | 31 | 12/12/2025 |
| 10.0.0-preview.6.25358.103 | 36 | 12/20/2025 |
| 10.0.0-preview.5.25277.114 | 38 | 12/16/2025 |
| 10.0.0-preview.4.25258.110 | 34 | 12/20/2025 |
| 10.0.0-preview.3.25172.1 | 35 | 12/14/2025 |
| 10.0.0-preview.2.25164.1 | 29 | 12/21/2025 |
| 10.0.0-preview.1.25120.3 | 30 | 12/12/2025 |
| 9.0.19 | 13 | 08/13/2026 |
| 9.0.18 | 10 | 07/17/2026 |
| 9.0.17 | 14 | 06/10/2026 |
| 9.0.16 | 16 | 05/14/2026 |
| 9.0.15 | 34 | 04/18/2026 |
| 9.0.14 | 34 | 03/14/2026 |
| 9.0.13 | 38 | 02/12/2026 |
| 9.0.12 | 43 | 01/18/2026 |
| 9.0.11 | 38 | 12/14/2025 |
| 9.0.10 | 42 | 12/17/2025 |
| 9.0.9 | 34 | 12/21/2025 |
| 9.0.8 | 35 | 12/25/2025 |
| 9.0.7 | 37 | 12/13/2025 |
| 9.0.6 | 39 | 12/13/2025 |
| 9.0.5 | 34 | 12/12/2025 |
| 9.0.4 | 31 | 12/16/2025 |
| 9.0.3 | 33 | 12/14/2025 |
| 9.0.2 | 32 | 01/01/2026 |
| 9.0.1 | 25 | 12/21/2025 |
| 9.0.0 | 29 | 01/10/2026 |
| 9.0.0-rc.2.24474.3 | 29 | 12/14/2025 |
| 9.0.0-rc.1.24452.1 | 30 | 12/21/2025 |
| 9.0.0-preview.7.24406.2 | 30 | 12/21/2025 |
| 9.0.0-preview.6.24328.4 | 33 | 12/16/2025 |
| 9.0.0-preview.5.24306.11 | 31 | 12/21/2025 |
| 9.0.0-preview.4.24267.6 | 31 | 12/21/2025 |
| 9.0.0-preview.3.24172.13 | 32 | 12/21/2025 |
| 9.0.0-preview.2.24128.4 | 31 | 12/14/2025 |
| 9.0.0-preview.1.24081.5 | 32 | 12/21/2025 |
| 8.0.30 | 11 | 08/13/2026 |
| 8.0.29 | 10 | 07/17/2026 |
| 8.0.28 | 16 | 06/10/2026 |
| 8.0.27 | 18 | 05/14/2026 |
| 8.0.26 | 38 | 04/14/2026 |
| 8.0.25 | 33 | 03/14/2026 |
| 8.0.24 | 35 | 02/12/2026 |
| 8.0.23 | 40 | 01/18/2026 |
| 8.0.22 | 34 | 12/20/2025 |
| 8.0.21 | 38 | 12/14/2025 |
| 8.0.20 | 35 | 12/18/2025 |
| 8.0.19 | 39 | 12/23/2025 |
| 8.0.18 | 39 | 12/13/2025 |
| 8.0.17 | 39 | 12/14/2025 |
| 8.0.16 | 31 | 12/14/2025 |
| 8.0.15 | 37 | 12/22/2025 |
| 8.0.14 | 40 | 12/18/2025 |
| 8.0.13 | 31 | 12/13/2025 |
| 8.0.12 | 30 | 01/10/2026 |
| 8.0.11 | 32 | 12/13/2025 |
| 8.0.10 | 33 | 12/11/2025 |
| 8.0.8 | 1,079 | 12/10/2025 |
| 8.0.7 | 42 | 12/26/2025 |
| 8.0.6 | 34 | 01/06/2026 |
| 8.0.5 | 28 | 12/13/2025 |
| 8.0.4 | 26 | 01/10/2026 |
| 8.0.3 | 29 | 12/19/2025 |
| 8.0.2 | 30 | 01/02/2026 |
| 8.0.1 | 32 | 12/13/2025 |
| 8.0.0 | 33 | 01/05/2026 |
| 8.0.0-rc.2.23480.2 | 31 | 12/21/2025 |
| 8.0.0-rc.1.23421.29 | 31 | 12/21/2025 |
| 8.0.0-preview.7.23375.9 | 28 | 12/21/2025 |
| 8.0.0-preview.6.23329.11 | 27 | 12/21/2025 |
| 8.0.0-preview.5.23302.2 | 26 | 12/21/2025 |
| 8.0.0-preview.4.23260.4 | 27 | 12/11/2025 |
| 8.0.0-preview.3.23177.8 | 26 | 12/21/2025 |
| 8.0.0-preview.2.23153.2 | 24 | 12/16/2025 |
| 8.0.0-preview.1.23112.2 | 31 | 12/13/2025 |
| 7.0.20 | 32 | 12/13/2025 |
| 7.0.19 | 32 | 01/04/2026 |
| 7.0.18 | 31 | 12/23/2025 |
| 7.0.17 | 32 | 12/12/2025 |
| 7.0.16 | 29 | 12/20/2025 |
| 7.0.15 | 33 | 12/14/2025 |
| 7.0.14 | 25 | 01/10/2026 |
| 7.0.13 | 34 | 12/10/2025 |
| 7.0.12 | 30 | 12/12/2025 |
| 7.0.11 | 32 | 12/14/2025 |
| 7.0.10 | 31 | 12/16/2025 |
| 7.0.9 | 30 | 12/14/2025 |
| 7.0.8 | 26 | 12/14/2025 |
| 7.0.7 | 30 | 12/16/2025 |
| 7.0.5 | 27 | 12/29/2025 |
| 7.0.4 | 32 | 12/13/2025 |
| 7.0.3 | 31 | 12/14/2025 |
| 7.0.2 | 31 | 12/14/2025 |
| 7.0.1 | 27 | 12/14/2025 |
| 7.0.0 | 28 | 12/09/2025 |
| 7.0.0-rc.2.22476.2 | 27 | 12/21/2025 |
| 7.0.0-rc.1.22427.2 | 33 | 12/21/2025 |
| 7.0.0-preview.7.22376.6 | 28 | 12/16/2025 |
| 7.0.0-preview.6.22330.3 | 32 | 12/10/2025 |
| 7.0.0-preview.5.22303.8 | 24 | 12/21/2025 |
| 7.0.0-preview.4.22251.1 | 29 | 12/21/2025 |
| 7.0.0-preview.3.22178.4 | 27 | 12/21/2025 |
| 7.0.0-preview.2.22153.2 | 28 | 12/21/2025 |
| 7.0.0-preview.1.22109.13 | 27 | 12/14/2025 |
| 6.0.36 | 36 | 01/08/2026 |
| 6.0.35 | 29 | 12/17/2025 |
| 6.0.33 | 30 | 01/10/2026 |
| 6.0.32 | 32 | 12/19/2025 |
| 6.0.31 | 34 | 01/10/2026 |
| 6.0.30 | 29 | 12/10/2025 |
| 6.0.29 | 31 | 12/29/2025 |
| 6.0.28 | 33 | 12/10/2025 |
| 6.0.27 | 37 | 12/11/2025 |
| 6.0.26 | 31 | 12/30/2025 |
| 6.0.25 | 35 | 12/09/2025 |
| 6.0.24 | 34 | 12/14/2025 |
| 6.0.23 | 34 | 12/13/2025 |
| 6.0.22 | 34 | 12/10/2025 |
| 6.0.21 | 30 | 12/23/2025 |
| 6.0.20 | 26 | 01/07/2026 |
| 6.0.19 | 26 | 01/02/2026 |
| 6.0.18 | 31 | 01/09/2026 |
| 6.0.16 | 29 | 12/13/2025 |
| 6.0.15 | 25 | 12/14/2025 |
| 6.0.14 | 35 | 12/14/2025 |
| 6.0.13 | 32 | 12/17/2025 |
| 6.0.12 | 30 | 12/14/2025 |
| 6.0.11 | 27 | 01/05/2026 |
| 6.0.10 | 31 | 12/13/2025 |
| 6.0.9 | 30 | 01/11/2026 |
| 6.0.8 | 33 | 12/18/2025 |
| 6.0.7 | 29 | 01/10/2026 |
| 6.0.6 | 35 | 01/05/2026 |
| 6.0.5 | 26 | 12/14/2025 |
| 6.0.4 | 30 | 01/10/2026 |
| 6.0.3 | 34 | 12/14/2025 |
| 6.0.2 | 24 | 01/10/2026 |
| 6.0.1 | 31 | 12/17/2025 |
| 6.0.0 | 33 | 01/05/2026 |
| 6.0.0-rc.2.21480.10 | 26 | 12/21/2025 |
| 6.0.0-rc.1.21452.15 | 28 | 12/21/2025 |
| 6.0.0-preview.7.21378.6 | 29 | 12/21/2025 |
| 6.0.0-preview.6.21355.2 | 30 | 12/16/2025 |
| 6.0.0-preview.5.21301.17 | 24 | 12/10/2025 |
| 6.0.0-preview.4.21253.5 | 30 | 12/19/2025 |
| 6.0.0-preview.3.21201.13 | 28 | 12/14/2025 |
| 6.0.0-preview.2.21154.6 | 29 | 12/14/2025 |
| 6.0.0-preview.1.21103.6 | 30 | 12/21/2025 |
| 5.0.17 | 32 | 01/07/2026 |
| 5.0.16 | 33 | 12/14/2025 |
| 5.0.15 | 34 | 12/10/2025 |
| 5.0.14 | 27 | 12/12/2025 |
| 5.0.13 | 26 | 12/28/2025 |
| 5.0.12 | 45 | 12/10/2025 |
| 5.0.11 | 34 | 12/21/2025 |
| 5.0.10 | 36 | 12/20/2025 |
| 5.0.9 | 25 | 12/29/2025 |
| 5.0.8 | 29 | 01/09/2026 |
| 5.0.7 | 34 | 12/18/2025 |
| 5.0.6 | 29 | 12/13/2025 |
| 5.0.5 | 30 | 12/26/2025 |
| 5.0.4 | 32 | 12/14/2025 |
| 5.0.3 | 34 | 01/10/2026 |
| 5.0.2 | 35 | 12/20/2025 |
| 5.0.1 | 34 | 01/05/2026 |
| 5.0.0 | 27 | 12/18/2025 |
| 5.0.0-rc.2.20475.17 | 30 | 12/21/2025 |
| 5.0.0-rc.1.20451.17 | 24 | 12/21/2025 |
| 5.0.0-preview.8.20414.8 | 24 | 12/14/2025 |
| 5.0.0-preview.7.20365.19 | 28 | 12/21/2025 |
| 5.0.0-preview.6.20312.15 | 30 | 12/19/2025 |
| 5.0.0-preview.5.20279.2 | 33 | 12/21/2025 |
| 5.0.0-preview.4.20257.10 | 28 | 12/21/2025 |
| 5.0.0-preview.3.20215.14 | 37 | 12/21/2025 |
| 5.0.0-preview.2.20167.3 | 29 | 12/21/2025 |
| 5.0.0-preview.1.20124.5 | 29 | 12/16/2025 |
| 3.1.32 | 31 | 12/17/2025 |
| 3.1.31 | 35 | 12/14/2025 |
| 3.1.30 | 34 | 12/22/2025 |
| 3.1.29 | 32 | 12/15/2025 |
| 3.1.28 | 30 | 12/15/2025 |
| 3.1.27 | 33 | 01/10/2026 |
| 3.1.26 | 30 | 01/07/2026 |
| 3.1.25 | 35 | 12/22/2025 |
| 3.1.24 | 36 | 12/12/2025 |
| 3.1.23 | 25 | 12/16/2025 |
| 3.1.22 | 29 | 12/20/2025 |
| 3.1.21 | 24 | 12/13/2025 |
| 3.1.20 | 28 | 01/10/2026 |
| 3.1.19 | 28 | 01/08/2026 |
| 3.1.18 | 32 | 01/05/2026 |
| 3.1.17 | 13 | 01/10/2026 |
| 3.1.16 | 32 | 12/21/2025 |
| 3.1.15 | 25 | 01/06/2026 |
| 3.1.14 | 26 | 12/29/2025 |
| 3.1.13 | 35 | 01/09/2026 |
| 3.1.12 | 29 | 12/13/2025 |
| 3.1.11 | 27 | 12/09/2025 |
| 3.1.10 | 29 | 01/09/2026 |
| 3.1.9 | 33 | 12/22/2025 |
| 3.1.8 | 29 | 12/20/2025 |
| 3.1.7 | 31 | 12/24/2025 |
| 3.1.6 | 28 | 01/06/2026 |
| 3.1.5 | 26 | 12/29/2025 |
| 3.1.4 | 32 | 12/22/2025 |
| 3.1.3 | 23 | 12/18/2025 |
| 3.1.2 | 30 | 12/15/2025 |
| 3.1.1 | 32 | 12/17/2025 |
| 3.1.0 | 32 | 12/23/2025 |
| 3.1.0-preview3.19555.2 | 31 | 12/19/2025 |
| 3.1.0-preview2.19528.8 | 33 | 12/20/2025 |
| 3.1.0-preview1.19508.20 | 33 | 01/07/2026 |
| 3.0.3 | 29 | 12/16/2025 |
| 3.0.2 | 32 | 12/14/2025 |
| 3.0.0 | 29 | 12/14/2025 |
| 3.0.0-rc1.19457.4 | 21 | 12/11/2025 |
| 3.0.0-preview9.19424.4 | 35 | 12/20/2025 |
| 3.0.0-preview8.19405.7 | 27 | 12/21/2025 |
| 3.0.0-preview7.19365.7 | 34 | 12/20/2025 |
| 3.0.0-preview6.19307.2 | 29 | 12/20/2025 |
| 3.0.0-preview5-19227-01 | 30 | 12/16/2025 |
| 3.0.0-preview4-19216-03 | 30 | 12/16/2025 |
| 3.0.0-preview3-19153-02 | 29 | 01/10/2026 |
| 3.0.0-preview-19075-0444 | 33 | 12/16/2025 |
| 3.0.0-preview-18579-0056 | 32 | 01/10/2026 |
| 2.3.12 | 13 | 08/13/2026 |
| 2.3.11 | 14 | 06/10/2026 |
| 2.3.10 | 20 | 05/14/2026 |
| 2.3.9 | 35 | 01/08/2026 |
| 2.3.8 | 40 | 01/07/2026 |
| 2.3.0 | 28 | 01/10/2026 |
| 2.2.0 | 33 | 01/03/2026 |
| 2.2.0-preview3-35497 | 28 | 12/21/2025 |
| 2.2.0-preview2-35157 | 27 | 12/10/2025 |
| 2.2.0-preview1-35029 | 32 | 12/14/2025 |
| 2.1.1 | 33 | 12/14/2025 |
| 2.1.0 | 30 | 01/10/2026 |
| 2.1.0-rc1-final | 30 | 12/20/2025 |
| 2.1.0-preview2-final | 31 | 12/14/2025 |
| 2.1.0-preview1-final | 31 | 12/21/2025 |
| 2.0.3 | 39 | 12/20/2025 |
| 2.0.2 | 34 | 12/29/2025 |
| 2.0.1 | 30 | 12/20/2025 |
| 2.0.0 | 30 | 12/23/2025 |
| 2.0.0-preview2-final | 32 | 12/21/2025 |
| 2.0.0-preview1-final | 26 | 12/13/2025 |
| 1.1.3 | 30 | 12/29/2025 |
| 1.1.2 | 39 | 12/12/2025 |
| 1.1.1 | 29 | 12/19/2025 |
| 1.1.0 | 34 | 01/01/2026 |
| 1.1.0-preview1-final | 29 | 12/21/2025 |
| 1.0.5 | 27 | 12/14/2025 |
| 1.0.4 | 29 | 01/10/2026 |
| 1.0.3 | 34 | 12/17/2025 |
| 1.0.2 | 33 | 01/10/2026 |
| 1.0.1 | 26 | 12/22/2025 |
| 1.0.0 | 32 | 12/22/2025 |
| 1.0.0-rc2-final | 30 | 12/20/2025 |