Skip to content

Commit e7e6e27

Browse files
committed
Add more Prepare<T>() to improve test stability.
1 parent 3172b50 commit e7e6e27

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

  • test/MsgPack.UnitTest.Xamarin.iOS/Serialization

test/MsgPack.UnitTest.Xamarin.iOS/Serialization/AotTest.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ public static void SetupFixture()
4040
MessagePackSerializer.PrepareCollectionType<byte>();
4141
MessagePackSerializer.PrepareCollectionType<char>();
4242
MessagePackSerializer.PrepareCollectionType<int>();
43+
MessagePackSerializer.PrepareCollectionType<float>();
44+
MessagePackSerializer.PrepareCollectionType<double>();
45+
MessagePackSerializer.PrepareCollectionType<short>();
46+
MessagePackSerializer.PrepareCollectionType<uint>();
47+
MessagePackSerializer.PrepareCollectionType<ulong>();
48+
MessagePackSerializer.PrepareCollectionType<sbyte>();
4349
MessagePackSerializer.PrepareDictionaryType<string, int>();
4450
new ArraySegmentEqualityComparer<byte>().Equals( default( ArraySegment<byte> ), default( ArraySegment<byte> ) );
4551
new ArraySegmentEqualityComparer<char>().Equals( default( ArraySegment<char> ), default( ArraySegment<char> ) );

0 commit comments

Comments
 (0)