From 45ac13819a71fb42af0e229a9ddd6b9c3abf4d13 Mon Sep 17 00:00:00 2001 From: 7H3LaughingMan <7H3LaughingMan@proton.me> Date: Tue, 29 Apr 2025 13:43:47 -0500 Subject: [PATCH] Use New Tests --- src/DotTiled.Tests/UnitTests/Serialization/TestData.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/DotTiled.Tests/UnitTests/Serialization/TestData.cs b/src/DotTiled.Tests/UnitTests/Serialization/TestData.cs index 2d59b39..2256f83 100644 --- a/src/DotTiled.Tests/UnitTests/Serialization/TestData.cs +++ b/src/DotTiled.Tests/UnitTests/Serialization/TestData.cs @@ -34,6 +34,9 @@ public static partial class TestData public static IEnumerable MapTests => [ [GetMapPath("default-map"), (string f) => DefaultMap(), Array.Empty()], + [GetMapPath("default-map-base64"), (string f) => DefaultMapBase64(), Array.Empty()], + [GetMapPath("default-map-base64-gzip"), (string f) => DefaultMapBase64GZip(), Array.Empty()], + [GetMapPath("default-map-base64-zlib"), (string f) => DefaultMapBase64ZLib(), Array.Empty()], [GetMapPath("map-duplicate-object-id-bug"), (string f) => MapDuplicateObjectIdBug(f), Array.Empty()], [GetMapPath("map-with-common-props"), (string f) => MapWithCommonProps(), Array.Empty()], [GetMapPath("map-with-custom-type-props"), (string f) => MapWithCustomTypeProps(), MapWithCustomTypePropsCustomTypeDefinitions()],