|
@@ -252,6 +252,7 @@ func testCodecGroup(t *testing.T) {
|
|
|
|
|
|
|
|
t.Run("TestJsonInvalidUnicode", TestJsonInvalidUnicode)
|
|
t.Run("TestJsonInvalidUnicode", TestJsonInvalidUnicode)
|
|
|
t.Run("TestCborHalfFloat", TestCborHalfFloat)
|
|
t.Run("TestCborHalfFloat", TestCborHalfFloat)
|
|
|
|
|
+ t.Run("TestMsgpackDecodeMapAndExtSizeMismatch", TestMsgpackDecodeMapAndExtSizeMismatch)
|
|
|
// <tear-down code>
|
|
// <tear-down code>
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -275,7 +276,6 @@ func testJsonGroup(t *testing.T) {
|
|
|
t.Run("TestJsonEmbeddedFieldPrecedence", TestJsonEmbeddedFieldPrecedence)
|
|
t.Run("TestJsonEmbeddedFieldPrecedence", TestJsonEmbeddedFieldPrecedence)
|
|
|
t.Run("TestJsonLargeContainerLen", TestJsonLargeContainerLen)
|
|
t.Run("TestJsonLargeContainerLen", TestJsonLargeContainerLen)
|
|
|
t.Run("TestJsonMammothMapsAndSlices", TestJsonMammothMapsAndSlices)
|
|
t.Run("TestJsonMammothMapsAndSlices", TestJsonMammothMapsAndSlices)
|
|
|
- t.Run("TestJsonInvalidUnicode", TestJsonInvalidUnicode)
|
|
|
|
|
t.Run("TestJsonTime", TestJsonTime)
|
|
t.Run("TestJsonTime", TestJsonTime)
|
|
|
t.Run("TestJsonUintToInt", TestJsonUintToInt)
|
|
t.Run("TestJsonUintToInt", TestJsonUintToInt)
|
|
|
t.Run("TestJsonDifferentMapOrSliceType", TestJsonDifferentMapOrSliceType)
|
|
t.Run("TestJsonDifferentMapOrSliceType", TestJsonDifferentMapOrSliceType)
|
|
@@ -284,6 +284,8 @@ func testJsonGroup(t *testing.T) {
|
|
|
t.Run("TestJsonIntfMapping", TestJsonIntfMapping)
|
|
t.Run("TestJsonIntfMapping", TestJsonIntfMapping)
|
|
|
t.Run("TestJsonMissingFields", TestJsonMissingFields)
|
|
t.Run("TestJsonMissingFields", TestJsonMissingFields)
|
|
|
t.Run("TestJsonMaxDepth", TestJsonMaxDepth)
|
|
t.Run("TestJsonMaxDepth", TestJsonMaxDepth)
|
|
|
|
|
+
|
|
|
|
|
+ t.Run("TestJsonInvalidUnicode", TestJsonInvalidUnicode)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func testBincGroup(t *testing.T) {
|
|
func testBincGroup(t *testing.T) {
|
|
@@ -339,6 +341,7 @@ func testCborGroup(t *testing.T) {
|
|
|
t.Run("TestCborIntfMapping", TestCborIntfMapping)
|
|
t.Run("TestCborIntfMapping", TestCborIntfMapping)
|
|
|
t.Run("TestCborMissingFields", TestCborMissingFields)
|
|
t.Run("TestCborMissingFields", TestCborMissingFields)
|
|
|
t.Run("TestCborMaxDepth", TestCborMaxDepth)
|
|
t.Run("TestCborMaxDepth", TestCborMaxDepth)
|
|
|
|
|
+
|
|
|
t.Run("TestCborHalfFloat", TestCborHalfFloat)
|
|
t.Run("TestCborHalfFloat", TestCborHalfFloat)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -366,6 +369,8 @@ func testMsgpackGroup(t *testing.T) {
|
|
|
t.Run("TestMsgpackIntfMapping", TestMsgpackIntfMapping)
|
|
t.Run("TestMsgpackIntfMapping", TestMsgpackIntfMapping)
|
|
|
t.Run("TestMsgpackMissingFields", TestMsgpackMissingFields)
|
|
t.Run("TestMsgpackMissingFields", TestMsgpackMissingFields)
|
|
|
t.Run("TestMsgpackMaxDepth", TestMsgpackMaxDepth)
|
|
t.Run("TestMsgpackMaxDepth", TestMsgpackMaxDepth)
|
|
|
|
|
+
|
|
|
|
|
+ t.Run("TestMsgpackDecodeMapAndExtSizeMismatch", TestMsgpackDecodeMapAndExtSizeMismatch)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func testSimpleGroup(t *testing.T) {
|
|
func testSimpleGroup(t *testing.T) {
|