Cover all cases of "creating" `Utf8String`s

This commit is contained in:
Susko3 2024-04-17 12:12:45 +02:00
parent 2f459c7a84
commit 6f8564fb9d
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@ namespace SDL3.Tests
{ {
checkNull(null); checkNull(null);
checkNull(default); checkNull(default);
checkNull(new Utf8String()); // don't do this in actual code
} }
[TestCase(null, -1)] [TestCase(null, -1)]