Merge pull request #104793 from YYF233333/remove_astar_stress_test

Remove stress unit tests
This commit is contained in:
Thaddeus Crews
2025-10-30 10:46:02 -05:00
6 changed files with 0 additions and 311 deletions

View File

@@ -2185,22 +2185,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