Explorar el Código

Add nullable guid test

crobibero hace 4 años
padre
commit
681a0f3e75
Se han modificado 1 ficheros con 8 adiciones y 0 borrados
  1. 8 0
      tests/Jellyfin.Common.Tests/Json/JsonGuidConverterTests.cs

+ 8 - 0
tests/Jellyfin.Common.Tests/Json/JsonGuidConverterTests.cs

@@ -57,5 +57,13 @@ namespace Jellyfin.Common.Tests.Json
             var str = JsonSerializer.Serialize(guid, _options);
             Assert.Equal($"\"{guid:N}\"", str);
         }
+
+        [Fact]
+        public void Serialize_Nullable_Success()
+        {
+            Guid? guid = new Guid("531797E9-9457-40E0-88BC-B1D6D38752FA");
+            var str = JsonSerializer.Serialize(guid, _options);
+            Assert.Equal($"\"{guid:N}\"", str);
+        }
     }
 }