Skip to content

Commit

Permalink
New test and snapshot.
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcweber committed Nov 15, 2024
1 parent 0dcd23e commit 508979d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions test/Tests.Infrastructure/GraphSon/GraphsonSupportTestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,20 @@ public Task IList_from_typed_values() => Verify<IList<int>>("""
]
""");

[Fact]
public Task ImmutableDictionary_with_typed_values_from_map() => Verify<ImmutableDictionary<string, int>>("""
[
{
"@type": "g:Map",
"@value":
[
"key1", { "@type": "g:Int32", "@value": 1 },
"key2", { "@type": "g:Int32", "@value": 2 }
]
}
]
""");

[Fact]
public Task GraphSon3ReferenceVertex() => Verify<object>(Graphson3ReferenceVertex);

Expand Down

0 comments on commit 508979d

Please sign in to comment.