Microsoft.AspNetCore.TestHost 10.0.0-preview.6.25358.103

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
10
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
11
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
20
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
31
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
73
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
10
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
10
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/4d0b3722384bfec7d4c210674df9b7bf1e59da90
11
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
9
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/2924ca229b3d6c91b7c9eded119b31dfd7aa1fef
9
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
11
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
10
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
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/8e941eb42f819adb116b881195158b3887a70a1c
10
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/ae2eabad0e49302d0632a7dde917fdc68d960dc4
9
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
10
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/bc25dd5d39fd057f7cb28acb5ad4d9e925a375de
9
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/c49ccc8727c620ce1cb8fb431bb3fe8f2e747236
9
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
10
Rafty
RAFT consensus implementation
9

.NET 10.0

  • No dependencies.

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