We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6a4612 commit f025588Copy full SHA for f025588
tests/yup_core/yup_String.cpp
@@ -937,6 +937,7 @@ TEST_F (StringTests, StandardLibraryIntegration)
937
938
TEST_F (StringTests, CaseConversionEdgeCases)
939
{
940
+#if ! YUP_WINDOWS
941
// Test toUpperCase with edge cases
942
String mixed_case (L"Hello, 世界! 123");
943
String upper_case = mixed_case.toUpperCase();
@@ -945,6 +946,7 @@ TEST_F (StringTests, CaseConversionEdgeCases)
945
946
// Test toLowerCase with edge cases
947
String lower_case = mixed_case.toLowerCase();
948
EXPECT_EQ (lower_case, String (L"hello, 世界! 123"));
949
+#endif
950
951
// Test with empty string
952
EXPECT_EQ (String().toUpperCase(), String());
0 commit comments