diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2022-05-02 21:04:17 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2022-05-17 11:51:22 +0800 |
commit | 3094e739f541e571fea65e3a7a14adb7ee9711b0 (patch) | |
tree | fad5b3d43bd0b629e5e2b92b49e23e64eaf55a52 /tests | |
parent | 067c1eb923dd38bac7ad86da52d94394eeac44e5 (diff) |
Create onready variables when dropping nodes and holding Ctrl
Diffstat (limited to 'tests')
-rw-r--r-- | tests/core/string/test_string.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/core/string/test_string.h b/tests/core/string/test_string.h index 58372a0ed6..0b191d2d94 100644 --- a/tests/core/string/test_string.h +++ b/tests/core/string/test_string.h @@ -1447,6 +1447,20 @@ TEST_CASE("[String] validate_node_name") { CHECK(name_with_invalid_chars.validate_node_name() == "Name with invalid characters removed!"); } +TEST_CASE("[String] validate_identifier") { + String empty_string; + CHECK(empty_string.validate_identifier() == "_"); + + String numeric_only = "12345"; + CHECK(numeric_only.validate_identifier() == "_2345"); + + String name_with_spaces = "Name with spaces"; + CHECK(name_with_spaces.validate_identifier() == "Name_with_spaces"); + + String name_with_invalid_chars = String::utf8("Invalid characters:@*#&世界"); + CHECK(name_with_invalid_chars.validate_identifier() == "Invalid_characters_______"); +} + TEST_CASE("[String] Variant indexed get") { Variant s = String("abcd"); bool valid = false; |