From 6f8564fb9d3149250e92d26fd31332d1cda2cf1e Mon Sep 17 00:00:00 2001 From: Susko3 Date: Wed, 17 Apr 2024 12:12:45 +0200 Subject: [PATCH] Cover all cases of "creating" `Utf8String`s --- SDL3-CS.Tests/TestUtf8String.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/SDL3-CS.Tests/TestUtf8String.cs b/SDL3-CS.Tests/TestUtf8String.cs index 2c4ec5c..be97d99 100644 --- a/SDL3-CS.Tests/TestUtf8String.cs +++ b/SDL3-CS.Tests/TestUtf8String.cs @@ -14,6 +14,7 @@ namespace SDL3.Tests { checkNull(null); checkNull(default); + checkNull(new Utf8String()); // don't do this in actual code } [TestCase(null, -1)]