Add a stand-in section for unit tests.

This commit is contained in:
Lukas Tenbrink
2025-09-09 16:02:21 +02:00
parent fd965f6e5e
commit 3c594ad3c5

View File

@@ -3,4 +3,15 @@
Contributing unit tests Contributing unit tests
======================= =======================
See also the `current documentation for unit tests <https://docs.godotengine.org/en/stable/contributing/development/core_and_modules/unit_testing.html>`_. 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 <https://docs.godotengine.org/en/stable/contributing/development/core_and_modules/unit_testing.html>`_.
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.