Microsoft.AspNetCore.TestHost 10.0.0-preview.1.25120.3

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: An IServer implementation for executing tests
  • TestServerOptions: Provides options for configuring a TestServer

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
Alpata.BaseUnitTests
Test projesi için kullanılır Testlerin sıralanabilmesi için Order attribute desteği sağlar Test sunucusunu çalıştırarak otomatik servis testini yapar
6
Alpata.BaseUnitTests
Test projesi için kullanılır Testlerin sıralanabilmesi için Order attribute desteği sağlar Test sunucusunu çalıştırarak otomatik servis testini yapar
9
Alpata.BaseUnitTests
Test projesi için kullanılır Testlerin sıralanabilmesi için Order attribute desteği sağlar Test sunucusunu çalıştırarak otomatik servis testini yapar
23
Alpata.BaseUnitTests
Test projesi için kullanılır Testlerin sıralanabilmesi için Order attribute desteği sağlar Test sunucusunu çalıştırarak otomatik servis testini yapar
60
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
5
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/1bf292d47ac2a0ebda07d8a3f00355dd01915ad5
6
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/561deb05ae2d6680206e3d4a6bc75de699585980
5
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/844a82e37cae48af2ab2ee4f39b41283e6bb4f0e
5
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/9699b939f94b7524a178821d78addefa5af5d750
5
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/1dcf7acfacf0fe154adcc23270cb0da11ff44ace
6
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
6
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/3fe12b935c03138f76364dc877a7e069e254b5b2
6
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/54e8b61777d42d2b10744d1987438ee5b8c0b24d
5
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/55738ff96b832439076e25584cfe0eb3bace9b01
5
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/564969bca155b40432d101ec35f24a0e81e6afa0
5
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
6
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/6a01dd1e69c8b9bd1ae005ea465ef2bcd26294bf
7
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/8e941eb42f819adb116b881195158b3887a70a1c
6
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/da7e9894ce22ef8cc02e5acc56e95a6f8cf8f644
6

.NET 10.0

  • No dependencies.

Version Downloads Last updated
10.0.0-preview.1.25120.3 1 02/25/2025
9.0.2 1 02/25/2025
9.0.1 2 01/18/2025
9.0.0 2 01/18/2025
9.0.0-rc.2.24474.3 3 01/16/2025
9.0.0-rc.1.24452.1 0 09/10/2024
9.0.0-preview.7.24406.2 0 08/13/2024
9.0.0-preview.6.24328.4 1 10/06/2024
9.0.0-preview.5.24306.11 1 10/22/2024
9.0.0-preview.4.24267.6 0 05/21/2024
9.0.0-preview.3.24172.13 1 10/05/2024
9.0.0-preview.2.24128.4 3 03/28/2024
9.0.0-preview.1.24081.5 3 03/10/2024
8.0.13 1 02/25/2025
8.0.12 2 01/18/2025
8.0.11 1 02/25/2025
8.0.10 3 01/09/2025
8.0.8 1 02/25/2025
8.0.7 2 12/08/2024
8.0.6 2 02/25/2025
8.0.5 2 10/02/2024
8.0.4 1 02/25/2025
8.0.3 5 03/28/2024
8.0.2 4 03/01/2024
8.0.1 5 03/02/2024
8.0.0 7 03/01/2024
8.0.0-rc.2.23480.2 5 10/31/2023
8.0.0-rc.1.23421.29 0 09/12/2023
8.0.0-preview.7.23375.9 2 03/10/2024
8.0.0-preview.6.23329.11 2 03/03/2024
8.0.0-preview.5.23302.2 2 03/11/2024
8.0.0-preview.4.23260.4 2 03/04/2024
8.0.0-preview.3.23177.8 2 03/02/2024
8.0.0-preview.2.23153.2 2 03/02/2024
8.0.0-preview.1.23112.2 3 03/09/2024
7.0.20 1 02/25/2025
7.0.19 1 02/25/2025
7.0.18 1 02/25/2025
7.0.17 5 03/28/2024
7.0.16 4 03/01/2024
7.0.15 4 03/04/2024
7.0.14 4 02/08/2024
7.0.13 4 11/04/2023
7.0.12 4 03/05/2024
7.0.11 5 11/28/2023
7.0.10 5 08/24/2023
7.0.9 5 11/05/2023
7.0.8 5 03/09/2024
7.0.7 4 11/05/2023
7.0.5 6 08/18/2023
7.0.4 4 08/18/2023
7.0.3 6 08/18/2023
7.0.2 9 08/18/2023
7.0.1 8 08/18/2023
7.0.0 15 08/18/2023
7.0.0-rc.2.22476.2 4 11/07/2023
7.0.0-rc.1.22427.2 5 02/27/2024
7.0.0-preview.7.22376.6 1 03/10/2024
7.0.0-preview.6.22330.3 1 02/25/2025
7.0.0-preview.5.22303.8 2 03/10/2024
7.0.0-preview.4.22251.1 2 03/02/2024
7.0.0-preview.3.22178.4 4 03/04/2024
7.0.0-preview.2.22153.2 4 03/06/2024
7.0.0-preview.1.22109.13 3 03/06/2024
6.0.36 2 01/18/2025
6.0.35 3 12/24/2024
6.0.33 1 02/25/2025
6.0.32 2 10/19/2024
6.0.31 2 01/04/2025
6.0.30 1 02/25/2025
6.0.29 2 12/12/2024
6.0.28 3 03/28/2024
6.0.27 3 03/12/2024
6.0.26 3 03/12/2024
6.0.25 4 03/13/2024
6.0.24 5 01/03/2024
6.0.23 5 11/03/2023
6.0.22 4 01/04/2024
6.0.21 4 11/06/2023
6.0.20 5 11/04/2023
6.0.19 5 03/04/2024
6.0.18 5 01/08/2024
6.0.16 4 01/25/2024
6.0.15 1 02/25/2025
6.0.14 5 11/06/2023
6.0.13 4 11/03/2023
6.0.12 4 03/03/2024
6.0.11 4 03/04/2024
6.0.10 4 08/18/2023
6.0.9 11 08/18/2023
6.0.8 4 03/04/2024
6.0.7 6 11/09/2023
6.0.6 4 11/04/2023
6.0.5 4 01/28/2024
6.0.4 4 03/02/2024
6.0.3 11 08/18/2023
6.0.2 4 08/18/2023
6.0.1 4 03/02/2024
6.0.0 4 03/03/2024
6.0.0-rc.2.21480.10 2 03/17/2024
6.0.0-rc.1.21452.15 3 03/16/2024
6.0.0-preview.7.21378.6 3 03/10/2024
6.0.0-preview.6.21355.2 2 03/14/2024
6.0.0-preview.5.21301.17 2 03/16/2024
6.0.0-preview.4.21253.5 1 03/11/2024
6.0.0-preview.3.21201.13 2 03/03/2024
6.0.0-preview.2.21154.6 3 03/16/2024
6.0.0-preview.1.21103.6 3 03/08/2024
5.0.17 4 11/04/2023
5.0.16 5 11/04/2023
5.0.15 4 03/08/2024
5.0.14 5 03/04/2024
5.0.13 4 03/06/2024
5.0.12 5 11/07/2023
5.0.11 4 03/06/2024
5.0.10 4 03/04/2024
5.0.9 4 03/04/2024
5.0.8 4 03/06/2024
5.0.7 4 03/06/2024
5.0.6 4 03/06/2024
5.0.5 5 03/06/2024
5.0.4 5 03/06/2024
5.0.3 6 03/03/2024
5.0.2 5 11/04/2023
5.0.1 4 03/03/2024
5.0.0 4 03/03/2024
5.0.0-rc.2.20475.17 3 03/14/2024
5.0.0-rc.1.20451.17 1 02/22/2025
5.0.0-preview.8.20414.8 2 03/10/2024
5.0.0-preview.7.20365.19 2 03/11/2024
5.0.0-preview.6.20312.15 2 03/10/2024
5.0.0-preview.5.20279.2 2 03/02/2024
5.0.0-preview.4.20257.10 0 05/18/2020
5.0.0-preview.3.20215.14 4 11/11/2023
5.0.0-preview.2.20167.3 2 03/14/2024
5.0.0-preview.1.20124.5 2 03/10/2024
3.1.32 4 03/02/2024
3.1.31 4 03/03/2024
3.1.30 5 11/16/2023
3.1.29 4 03/04/2024
3.1.28 4 03/04/2024
3.1.27 4 11/04/2023
3.1.26 4 03/04/2024
3.1.25 4 11/06/2023
3.1.24 4 03/05/2024
3.1.23 5 03/05/2024
3.1.22 5 03/04/2024
3.1.21 4 11/02/2023
3.1.20 4 03/04/2024
3.1.19 4 11/06/2023
3.1.18 5 11/06/2023
3.1.17 5 03/03/2024
3.1.16 4 11/02/2023
3.1.15 5 03/03/2024
3.1.14 5 03/04/2024
3.1.13 5 11/06/2023
3.1.12 4 03/04/2024
3.1.11 4 08/18/2023
3.1.10 4 03/04/2024
3.1.9 4 03/04/2024
3.1.8 5 03/03/2024
3.1.7 5 03/04/2024
3.1.6 4 03/04/2024
3.1.5 4 03/04/2024
3.1.4 6 08/18/2023
3.1.3 4 03/03/2024
3.1.2 4 03/04/2024
3.1.1 4 03/03/2024
3.1.0 6 03/02/2024
3.1.0-preview3.19555.2 2 03/03/2024
3.1.0-preview2.19528.8 3 03/10/2024
3.1.0-preview1.19508.20 3 03/03/2024
3.0.3 4 03/04/2024
3.0.2 4 03/04/2024
3.0.0 4 03/03/2024
3.0.0-rc1.19457.4 3 03/09/2024
3.0.0-preview9.19424.4 2 03/10/2024
3.0.0-preview8.19405.7 4 03/03/2024
3.0.0-preview7.19365.7 3 03/10/2024
3.0.0-preview6.19307.2 2 03/02/2024
3.0.0-preview5-19227-01 3 03/09/2024
3.0.0-preview4-19216-03 2 01/18/2025
3.0.0-preview3-19153-02 3 03/04/2024
3.0.0-preview-19075-0444 2 01/18/2025
3.0.0-preview-18579-0056 3 03/10/2024
2.3.0 2 01/18/2025
2.2.0 4 12/04/2023
2.2.0-preview3-35497 3 03/10/2024
2.2.0-preview2-35157 6 11/04/2023
2.2.0-preview1-35029 4 03/02/2024
2.1.1 4 03/04/2024
2.1.0 4 03/02/2024
2.1.0-rc1-final 5 03/04/2024
2.1.0-preview2-final 5 03/06/2024
2.1.0-preview1-final 5 03/04/2024
2.0.3 4 03/04/2024
2.0.2 4 03/04/2024
2.0.1 4 11/03/2023
2.0.0 6 12/05/2023
2.0.0-preview2-final 5 03/02/2024
2.0.0-preview1-final 5 03/26/2024
1.1.3 5 03/02/2024
1.1.2 4 03/05/2024
1.1.1 4 03/03/2024
1.1.0 4 03/04/2024
1.1.0-preview1-final 6 03/06/2024
1.0.5 5 03/03/2024
1.0.4 5 03/04/2024
1.0.3 5 03/04/2024
1.0.2 5 01/27/2024
1.0.1 5 11/05/2023
1.0.0 4 01/14/2024
1.0.0-rc2-final 6 03/04/2024