Remove stress unit test.

This commit is contained in:
Yufeng Ying
2025-03-30 16:35:05 +08:00
parent ba0da90ba6
commit 0139ea615c
6 changed files with 0 additions and 311 deletions

View File

@@ -2199,22 +2199,4 @@ TEST_CASE("[String][URL] Parse URL") {
#undef CHECK_URL
}
TEST_CASE("[Stress][String] Empty via ' == String()'") {
for (int i = 0; i < 100000; ++i) {
String str = "Hello World!";
if (str == String()) {
continue;
}
}
}
TEST_CASE("[Stress][String] Empty via `is_empty()`") {
for (int i = 0; i < 100000; ++i) {
String str = "Hello World!";
if (str.is_empty()) {
continue;
}
}
}
} // namespace TestString