summaryrefslogtreecommitdiffstats
path: root/thirdparty/doctest/LICENSE.txt
Commit message (Collapse)AuthorAgeFilesLines
* doctest: Update to 2.4.11Rémi Verschelde2023-05-111-1/+1
|
* doctest: Update to 2.4.6Rémi Verschelde2021-10-041-1/+1
|
* doctest: Update to 2.4.1Andrii Doroshenko (Xrayez)2020-11-201-1/+1
| | | | Includes a patch for breakpoint inline assembly for macOS.
* t Add unit testing to Godot using DocTest and added to GitHub Actions CIRevoluPowered2020-07-241-0/+21
Implements exit codes into the engine so tests can return their statuses. Ideally we don't do this, and we use FIXUP logic to 'begin' and 'end' the engine execution for tests specifically. Since realistically we're initialising the engine here we don't want to do that, since String should not require an engine startup to test a single header. This lowers the complexity of running the unit tests and even for physics should be possible to implement such a fix.