Skip to content

Commit

Permalink
Test runner memory leak MRP
Browse files Browse the repository at this point in the history
  • Loading branch information
tetrapod00 committed Sep 7, 2024
1 parent 5675c76 commit d072e35
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
51 changes: 51 additions & 0 deletions tests/test_mrp.h
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit d072e35

Please sign in to comment.