mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 19:42:43 +00:00
Added two test cases
This commit is contained in:
parent
4e72e09343
commit
62e1a5e235
@ -88,6 +88,12 @@ TEST_CASE("[Dictionary] Assignment using bracket notation ([])") {
|
||||
CHECK(int(map[0]) == 400);
|
||||
// Check that assigning 0 doesn't overwrite the value for `false`.
|
||||
CHECK(int(map[false]) == 128);
|
||||
|
||||
// Ensure read-only maps aren't modified by non-existing keys.
|
||||
const auto length = map.size();
|
||||
map.make_read_only();
|
||||
CHECK(int(map["This key does not exist"].get_type()) == Variant::NIL);
|
||||
CHECK(map.size() == length);
|
||||
}
|
||||
|
||||
TEST_CASE("[Dictionary] get_key_lists()") {
|
||||
|
Loading…
Reference in New Issue
Block a user