Arbeidstilsynet.Common.TestExtensions
1.1.1
dotnet add package Arbeidstilsynet.Common.TestExtensions --version 1.1.1
NuGet\Install-Package Arbeidstilsynet.Common.TestExtensions -Version 1.1.1
<PackageReference Include="Arbeidstilsynet.Common.TestExtensions" Version="1.1.1" />
<PackageVersion Include="Arbeidstilsynet.Common.TestExtensions" Version="1.1.1" />
<PackageReference Include="Arbeidstilsynet.Common.TestExtensions" />
paket add Arbeidstilsynet.Common.TestExtensions --version 1.1.1
#r "nuget: Arbeidstilsynet.Common.TestExtensions, 1.1.1"
#:package Arbeidstilsynet.Common.TestExtensions@1.1.1
#addin nuget:?package=Arbeidstilsynet.Common.TestExtensions&version=1.1.1
#tool nuget:?package=Arbeidstilsynet.Common.TestExtensions&version=1.1.1
Introduction
This is a collection of useful patterns and extensions for unit testing in .NET.
📖 Installation
To install the TestExtensions, you can use the following command in your terminal:
dotnet add package Arbeidstilsynet.Common.TestExtensions
🧑💻 Usage
_server = WireMockServer.Start();
using var fileStream = File.Open(
"path/to/your/local/openapi.json"),
FileMode.Open,
FileAccess.Read
);
_server.AddOpenApiMappings(fileStream);
| Product | Versions 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. |
-
net10.0
- Verify (>= 31.9.3)
- Verify.XunitV3 (>= 31.9.3)
- WireMock.Net (>= 1.23.0)
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.1.1 | 69 | 2/18/2026 |
| 1.1.1-beta1 | 34 | 2/18/2026 |
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Added <!-- for new features. -->
### Changed <!-- for changes in existing functionality. -->
### Deprecated <!-- for soon-to-be removed features. -->
### Removed <!-- for now removed features. -->
### Fixed <!-- for any bug fixes. -->
### Security <!-- in case of vulnerabilities. -->
## 1.1.1
### Changed
- chore: moved package to nuget.org
## 1.1.0
### Changed
- changed(deps): Applied minor and patch updates to dependencies
## 1.0.0
### Changed
- changed(deps): Major dotnet updated (v10)
## 0.0.2
### Changed
- chore(renovate): all non major update
## 0.0.1
### Added
- An extension method for adding mappings to a wiremock server based on an OpenAPI spec.