From d072e3572760fa46919101fe918fa75222c8bd13 Mon Sep 17 00:00:00 2001 From: tetrapod00 <145553014+tetrapod00@users.noreply.github.com> Date: Fri, 6 Sep 2024 17:22:39 -0700 Subject: [PATCH] Test runner memory leak MRP --- tests/test_main.cpp | 2 ++ tests/test_mrp.h | 51 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 tests/test_mrp.h diff --git a/tests/test_main.cpp b/tests/test_main.cpp index 2b6461e9cae1..be2415b2b981 100644 --- a/tests/test_main.cpp +++ b/tests/test_main.cpp @@ -37,6 +37,8 @@ #include "editor/editor_settings.h" #endif // TOOLS_ENABLED +#include "tests/test_mrp.h" + #include "tests/core/config/test_project_settings.h" #include "tests/core/input/test_input_event.h" #include "tests/core/input/test_input_event_key.h" diff --git a/tests/test_mrp.h b/tests/test_mrp.h new file mode 100644 index 000000000000..83dced01de0c --- /dev/null +++ b/tests/test_mrp.h @@ -0,0 +1,51 @@ +/**************************************************************************/ +/* test_mrp.h */ +/**************************************************************************/ +/* This file is part of: */ +/* GODOT ENGINE */ +/* https://godotengine.org */ +/**************************************************************************/ +/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ +/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ +/* */ +/* Permission is hereby granted, free of charge, to any person obtaining */ +/* a copy of this software and associated documentation files (the */ +/* "Software"), to deal in the Software without restriction, including */ +/* without limitation the rights to use, copy, modify, merge, publish, */ +/* distribute, sublicense, and/or sell copies of the Software, and to */ +/* permit persons to whom the Software is furnished to do so, subject to */ +/* the following conditions: */ +/* */ +/* The above copyright notice and this permission notice shall be */ +/* included in all copies or substantial portions of the Software. */ +/* */ +/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */ +/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */ +/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */ +/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */ +/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */ +/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */ +/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +/**************************************************************************/ + +#ifndef TEST_MRP_H +#define TEST_MRP_H + +#ifdef TOOLS_ENABLED + +#include "editor/editor_settings.h" +#include "tests/test_macros.h" + +namespace MRPTests { + +TEST_CASE("[Editor] Test MRP") { + EditorSettings::get_singleton()->set_setting("interface/editor/editor_language", "es"); + String language = EditorSettings::get_singleton()->get_setting("interface/editor/editor_language"); + CHECK(language == "es"); +} + +} // namespace MRPTests + +#endif // TOOLS_ENABLED + +#endif // TEST_MRP_H