XBullet.EasyTesting.Http 1.0.6

There is a newer version of this package available.
See the version list below for details.
dotnet add package XBullet.EasyTesting.Http --version 1.0.6
                    
NuGet\Install-Package XBullet.EasyTesting.Http -Version 1.0.6
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="XBullet.EasyTesting.Http" Version="1.0.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="XBullet.EasyTesting.Http" Version="1.0.6" />
                    
Directory.Packages.props
<PackageReference Include="XBullet.EasyTesting.Http" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add XBullet.EasyTesting.Http --version 1.0.6
                    
#r "nuget: XBullet.EasyTesting.Http, 1.0.6"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package XBullet.EasyTesting.Http@1.0.6
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=XBullet.EasyTesting.Http&version=1.0.6
                    
Install as a Cake Addin
#tool nuget:?package=XBullet.EasyTesting.Http&version=1.0.6
                    
Install as a Cake Tool

XBullet.EasyTesting.Http

Fluent outbound HTTP stubs, request matching, fault simulation, and call recording for integration tests.

The package targets .NET 8 and .NET 10.

Install

dotnet add package XBullet.EasyTesting.Http
var stub = new StubHttpMessageHandler();

stub.When(HttpMethod.Get, "/products/42")
    .WithRequestHeader("X-Tenant", "tenant-7")
    .RespondJson(new { Id = 42, Name = "Keyboard" });

var client = new HttpClient(stub)
{
    BaseAddress = new Uri("https://catalog.test")
};

using var response = await client.GetAsync("/products/42");
stub.VerifyCalled(HttpMethod.Get, "/products/42");

Rules can match queries, headers, text or JSON bodies, and custom predicates. Response sequences, timeouts, cancellation, malformed payloads, and recorded-request assertions are also supported.

See the repository documentation for complete examples.

Product 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 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on XBullet.EasyTesting.Http:

Package Downloads
XBullet.EasyTesting.Snapshots.Http

Snapshot adapters for XBullet.EasyTesting outbound HTTP stubs.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.14 0 9/27/2026
1.0.13 39 9/26/2026
1.0.12 45 9/25/2026
1.0.11 42 9/24/2026
1.0.9 38 9/24/2026
1.0.8 114 9/21/2026
1.0.7 110 9/19/2026
1.0.6 115 9/18/2026
1.0.5 109 9/18/2026
1.0.4 116 9/15/2026
1.0.3 114 9/15/2026
0.2.0 112 9/15/2026
0.1.0 81 9/14/2026