Skip to content

Commit

Permalink
[Test] Add skipped serialization test for types derived from List<T> (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
claylaut committed May 16, 2024
1 parent 3ed5980 commit 8717df7
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,15 @@ public void TypeCodecConsumesTypeReferences()
Assert.Contains("[#7 VarInt Id: 2 SchemaType: Expected] Value: 2", formattedBitStream); // type reference from Type2 field pointing to the encoded field type of UntypedValue
}

[Fact(Skip = "Fix me please")]
public void TypeDerivedFromList()
{
var original = new SerializableClassWithCompiledBase { IntProperty = 30 };
var result = RoundTripThroughCodec(original);

Assert.Equal(original.IntProperty, result.IntProperty);
}

[Fact]
public void TypeDerivedFromDictionary()
{
Expand Down

0 comments on commit 8717df7

Please sign in to comment.