AtomiCloud.Diene.E2e.TestHelper 1.0.0

dotnet add package AtomiCloud.Diene.E2e.TestHelper --version 1.0.0
                    
NuGet\Install-Package AtomiCloud.Diene.E2e.TestHelper -Version 1.0.0
                    
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="AtomiCloud.Diene.E2e.TestHelper" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AtomiCloud.Diene.E2e.TestHelper" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="AtomiCloud.Diene.E2e.TestHelper" />
                    
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 AtomiCloud.Diene.E2e.TestHelper --version 1.0.0
                    
#r "nuget: AtomiCloud.Diene.E2e.TestHelper, 1.0.0"
                    
#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 AtomiCloud.Diene.E2e.TestHelper@1.0.0
                    
#: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=AtomiCloud.Diene.E2e.TestHelper&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=AtomiCloud.Diene.E2e.TestHelper&version=1.0.0
                    
Install as a Cake Tool

Diene .NET E2e

NuGet version NuGet downloads CI Unit coverage Integration coverage Meta coverage

AtomiCloud.Diene.E2e is the black-box/SIT harness and compatibility train for the ten published Diene .NET libraries. It selects an explicit service venue, drives an ASP.NET application in-process through WebApplicationFactory, or targets a validated Garden preview hostname over HTTP.

AtomiCloud.Diene.E2e.TestHelper carries the helper packages that really exist: Result, Interfaces, Config, Problems, Otel, AuthEngine, StandardConfig, ApiEngine, and ServerEngine. CoreUtils deliberately has no TestHelper.

dotnet add package AtomiCloud.Diene.E2e
dotnet add package AtomiCloud.Diene.E2e.TestHelper

Choose the SIT venue

Set SIT_DRIVER=inprocess for an in-process service or SIT_DRIVER=garden for a deployed preview environment. The parser refuses an absent or unknown value; silently choosing a venue would make a green run ambiguous.

using AtomiCloud.Diene.E2e.Drivers;

var kind = SitDriverSelection.Resolve(
    Environment.GetEnvironmentVariable(SitDriverSelection.EnvironmentVariable));

For an ASP.NET entry point:

await using var driver = new InProcessSitDriver<Program>();
using var response = await driver.Client.GetAsync("/system/health");
response.EnsureSuccessStatusCode();

For Garden, validate the final service-tree hostname before creating the driver:

using AtomiCloud.Diene.E2e.Garden;

var fixture = new GardenNamespaceFixture(
    "api", "notes", "sulfoxide", "pichu", "mew", "cluster.atomi.cloud");
var endpoint = GardenPreviewEndpoint.Resolve(fixture.Hostname, fixture);
await using var driver = new GardenSitDriver(endpoint);

The hostname is always module.service.platform.instance.landscape.zone. HTTPS is the default; HTTP must be explicit.

TestHelper bundle

Reference AtomiCloud.Diene.E2e.TestHelper only from tests. Its normal NuGet dependencies expose the nine published helper assemblies without copying their types or implementations. ShouldHaveStatus asserts one exact HTTP status and returns the response for further body/header checks.

using AtomiCloud.Diene.E2e.TestHelper.Assertions;

response.ShouldHaveStatus(HttpStatusCode.MisdirectedRequest);

Telemetry integration tests use the Interfaces/Otel in-memory seams. Preview SIT uses the real environment's Alloy pipeline. This package ships no fake OTLP collector and no Bruno tooling; Bruno collections belong to the service-side dotnet-api template under tests/sit/bruno.

See the harness contract and the shipped usage skill.

Product Compatible and additional computed target framework versions.
.NET 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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 176 7/29/2026