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
                    
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="Arbeidstilsynet.Common.TestExtensions" Version="1.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Arbeidstilsynet.Common.TestExtensions" Version="1.1.1" />
                    
Directory.Packages.props
<PackageReference Include="Arbeidstilsynet.Common.TestExtensions" />
                    
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 Arbeidstilsynet.Common.TestExtensions --version 1.1.1
                    
#r "nuget: Arbeidstilsynet.Common.TestExtensions, 1.1.1"
                    
#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 Arbeidstilsynet.Common.TestExtensions@1.1.1
                    
#: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=Arbeidstilsynet.Common.TestExtensions&version=1.1.1
                    
Install as a Cake Addin
#tool nuget:?package=Arbeidstilsynet.Common.TestExtensions&version=1.1.1
                    
Install as a Cake Tool

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 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.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.