From 3c594ad3c577367eb227ba043acc3da2acf2e7ce Mon Sep 17 00:00:00 2001 From: Lukas Tenbrink Date: Tue, 9 Sep 2025 16:02:21 +0200 Subject: [PATCH] Add a stand-in section for unit tests. --- engine/unit_tests.rst | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/engine/unit_tests.rst b/engine/unit_tests.rst index c5310a7..91710cf 100644 --- a/engine/unit_tests.rst +++ b/engine/unit_tests.rst @@ -3,4 +3,15 @@ Contributing unit tests ======================= -See also the `current documentation for unit tests `_. +The Godot teams are dedicated to ensuring a reliably, bug-free experience for users. +Therefore, we expect important logic to be tested with unit tests. + +Godot's unit tests are built into the binary, and can be run with an argument to the executable. +For more information, please read the +`current documentation for unit tests `_. + +Unit test guidelines +-------------------- + +We do not have dedicated guidelines for unit testing as of yet. +Please use common best practices for writing unit tests when contributing to Godot.