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 328c65d commit 0dcd23e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[
[
1,
3,
5
]
]
11 changes: 11 additions & 0 deletions test/Tests.Infrastructure/GraphSon/GraphsonSupportTestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,17 @@ public Task ImmutableArray_from_typed_values() => Verify<ImmutableArray<int>>(""
]
""");

[Fact]
public Task IList_from_typed_values() => Verify<IList<int>>("""
[
[
{ "@type": "g:Int32", "@value": 1 },
{ "@type": "g:Int32", "@value": 3 },
{ "@type": "g:Int32", "@value": 5 }
]
]
""");

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

Expand Down

0 comments on commit 0dcd23e

Please sign in to comment.