Shouldly.Json
0.0.2
See the version list below for details.
dotnet add package Shouldly.Json --version 0.0.2
NuGet\Install-Package Shouldly.Json -Version 0.0.2
<PackageReference Include="Shouldly.Json" Version="0.0.2" />
<PackageVersion Include="Shouldly.Json" Version="0.0.2" />
<PackageReference Include="Shouldly.Json" />
paket add Shouldly.Json --version 0.0.2
#r "nuget: Shouldly.Json, 0.0.2"
#addin nuget:?package=Shouldly.Json&version=0.0.2
#tool nuget:?package=Shouldly.Json&version=0.0.2
Shouldly.Json 
Shouldly.Json
was created by, and is maintained
by Marvin Mall.
It provides extension methods for the Shouldly library to compare JSON strings.
Installation
The package can be found on nuget.org. You can install the package with:
Install-Package Shouldly.Json
Usage
The library provides multiple methods for comparing JSON strings.
Semantic JSON Equality
Use ShouldBeSemanticallySameJson()
to compare two JSON strings for semantic equality. This means:
- Property order in objects doesn't matter
- Whitespace and formatting doesn't matter
- Numbers with same value but different representation (e.g., 1.0 and 1.00) are considered equal
- Array order matters
var json1 = @"{""name"": ""John"", ""age"": 30}";
var json2 = @"{""age"": 30, ""name"": ""John""}";
var json3 = @"{""name"": ""John"", ""age"": 31}";
json1.ShouldBeSemanticallySameJson(json2); // Succeeds
json1.ShouldBeSemanticallySameJson(json3); // Fails
JSON Subtree Matching
Use ShouldBeJsonSubtreeOf()
to verify that one JSON structure is contained within another. This means:
- The actual JSON must be a subset of the expected JSON
- Missing properties in objects are allowed
- Arrays must match exactly (including length and order), but objects in arrays are handled like other objects
var json1 = @"{""name"": ""John""}";
var json2 = @"{""name"": ""John"", ""age"": 30}";
var json3 = @"{""name"": ""Adrian""}";
var json4 = @"{""firstName"": ""John""}";
json1.ShouldBeJsonSubtreeOf(json2); // Succeeds
json1.ShouldBeJsonSubtreeOf(json3); // Fails
json1.ShouldBeJsonSubtreeOf(json4); // Fails
License
This library is open-sourced software licensed under the MIT license.
Product | Versions 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. |
-
net8.0
- Shouldly (>= 4.3.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.