Microsoft.Extensions.Hosting.Testing
9.0.0-preview.4.24271.2
Prefix Reserved
See the version list below for details.
dotnet add package Microsoft.Extensions.Hosting.Testing --version 9.0.0-preview.4.24271.2
NuGet\Install-Package Microsoft.Extensions.Hosting.Testing -Version 9.0.0-preview.4.24271.2
<PackageReference Include="Microsoft.Extensions.Hosting.Testing" Version="9.0.0-preview.4.24271.2" />
paket add Microsoft.Extensions.Hosting.Testing --version 9.0.0-preview.4.24271.2
#r "nuget: Microsoft.Extensions.Hosting.Testing, 9.0.0-preview.4.24271.2"
// Install Microsoft.Extensions.Hosting.Testing as a Cake Addin #addin nuget:?package=Microsoft.Extensions.Hosting.Testing&version=9.0.0-preview.4.24271.2&prerelease // Install Microsoft.Extensions.Hosting.Testing as a Cake Tool #tool nuget:?package=Microsoft.Extensions.Hosting.Testing&version=9.0.0-preview.4.24271.2&prerelease
Microsoft.Extensions.Hosting.Testing
Tools for integration testing of apps built with Microsoft.Extensions.Hosting.
Install the package
From the command-line:
dotnet add package Microsoft.Extensions.Hosting.Testing
Or directly in the C# project file:
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting.Testing" Version="[CURRENTVERSION]" />
</ItemGroup>
Usage Example
FakeHost
FakeHost
enables creating an application host pre-configured for a unit test environment.
The host can be created using the following APIs:
public static IHostBuilder CreateBuilder()
public static IHostBuilder CreateBuilder(Action<FakeHostOptions> configure)
public static IHostBuilder CreateBuilder(FakeHostOptions options)
For example:
using var host = await FakeHost.CreateBuilder(options => { });
.ConfigureServices(x =>
{
// ...
})
.StartAsync();
FakeHostingExtensions
FakeHostingExtensions
is a collection of IHost
and IHostBuilder
extension methods for use within a unit test environment. These help collect logs as well as augment the host and app configurations.
Feedback & Contributing
For any feedback or contributions, please visit us in our GitHub repo.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. |
.NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.6.2
- Microsoft.Bcl.TimeProvider (>= 9.0.0-preview.4.24266.19)
- Microsoft.Extensions.Compliance.Testing (>= 9.0.0-preview.4.24271.2)
- Microsoft.Extensions.Diagnostics.Testing (>= 9.0.0-preview.4.24271.2)
- Microsoft.Extensions.Hosting (>= 9.0.0-preview.4.24266.19)
- Microsoft.Extensions.Telemetry.Abstractions (>= 9.0.0-preview.4.24271.2)
-
net8.0
- Microsoft.Bcl.TimeProvider (>= 9.0.0-preview.4.24266.19)
- Microsoft.Extensions.Compliance.Testing (>= 9.0.0-preview.4.24271.2)
- Microsoft.Extensions.Diagnostics.Testing (>= 9.0.0-preview.4.24271.2)
- Microsoft.Extensions.Hosting (>= 9.0.0-preview.4.24266.19)
- Microsoft.Extensions.Telemetry.Abstractions (>= 9.0.0-preview.4.24271.2)
-
net9.0
- Microsoft.Bcl.TimeProvider (>= 9.0.0-preview.4.24266.19)
- Microsoft.Extensions.Compliance.Testing (>= 9.0.0-preview.4.24271.2)
- Microsoft.Extensions.Diagnostics.Testing (>= 9.0.0-preview.4.24271.2)
- Microsoft.Extensions.Hosting (>= 9.0.0-preview.4.24266.19)
- Microsoft.Extensions.Telemetry.Abstractions (>= 9.0.0-preview.4.24271.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.