Add support for MsgPack dsd format

This commit is contained in:
Daniel 2021-11-22 14:49:50 +01:00
parent 8813102b7b
commit 6cde860324
2 changed files with 14 additions and 2 deletions

View file

@ -121,7 +121,7 @@ func TestConversion(t *testing.T) {
t.Parallel()
compressionFormats := []CompressionFormat{AutoCompress, GZIP}
formats := []SerializationFormat{JSON, CBOR}
formats := []SerializationFormat{JSON, CBOR, MsgPack}
for _, compression := range compressionFormats {
for _, format := range formats {
@ -233,7 +233,7 @@ func TestConversion(t *testing.T) {
}
// test all formats
simplifiedFormatTesting := []SerializationFormat{JSON, CBOR, GenCode}
simplifiedFormatTesting := []SerializationFormat{JSON, CBOR, MsgPack, GenCode}
for _, format := range simplifiedFormatTesting {