Ignixa.TestScript.FhirFakes 0.5.6-beta

This is a prerelease version of Ignixa.TestScript.FhirFakes.
dotnet add package Ignixa.TestScript.FhirFakes --version 0.5.6-beta
                    
NuGet\Install-Package Ignixa.TestScript.FhirFakes -Version 0.5.6-beta
                    
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="Ignixa.TestScript.FhirFakes" Version="0.5.6-beta" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ignixa.TestScript.FhirFakes" Version="0.5.6-beta" />
                    
Directory.Packages.props
<PackageReference Include="Ignixa.TestScript.FhirFakes" />
                    
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 Ignixa.TestScript.FhirFakes --version 0.5.6-beta
                    
#r "nuget: Ignixa.TestScript.FhirFakes, 0.5.6-beta"
                    
#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 Ignixa.TestScript.FhirFakes@0.5.6-beta
                    
#: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=Ignixa.TestScript.FhirFakes&version=0.5.6-beta&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Ignixa.TestScript.FhirFakes&version=0.5.6-beta&prerelease
                    
Install as a Cake Tool

Ignixa.TestScript.FhirFakes

FhirFakes integration for the TestScript execution engine. Automatically generates FHIR fixtures using SchemaBasedFhirResourceFaker.

Installation

dotnet add package Ignixa.TestScript.FhirFakes

Usage

Register FhirFakesFixtureProvider in your fixture provider chain. It must come before InlineFixtureProviderCompositeFixtureProvider stops at the first non-null result, and InlineFixtureProvider returns the skeleton resource object immediately without generating fake data:

using Ignixa.TestScript.FhirFakes;
using Ignixa.TestScript.Fixtures;

var provider = new CompositeFixtureProvider([
    new FhirFakesFixtureProvider(),
    new InlineFixtureProvider()
]);

Activate via extension inside the resource object of the fixture definition:

{
  "id": "generated-patient",
  "resource": {
    "resourceType": "Patient",
    "extension": [{
      "url": "http://ignixa.io/testscript/fhirfakes",
      "valueCode": "Patient"
    }]
  }
}
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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

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
0.5.6-beta 30 6/17/2026
0.5.2-beta 42 6/16/2026
0.5.0-beta 47 6/15/2026