We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 495add6 commit f47f70cCopy full SHA for f47f70c
test/MsgPack.UnitTest/Serialization/SerializationContextTest.cs
@@ -326,6 +326,14 @@ public void TestIssue27_Collection()
326
Assert.That( result.First(), Is.EqualTo( "A" ) );
327
}
328
329
+
330
+ [Test]
331
+ public void TestDefaultTableCapacity()
332
+ {
333
+ var table = SerializerRepository.InitializeDefaultTable( new SerializationContext() );
334
+ Assert.That( table.Count, Is.LessThanOrEqualTo( SerializerRepository.DefaultTableCapacity ) );
335
+ }
336
337
private sealed class NetDateTimeSerializer : MessagePackSerializer<DateTime>
338
{
339
public NetDateTimeSerializer()
0 commit comments