Upgrade Doctest and GoogleTest testing frameworks to the latest versions

This commit is contained in:
Ivan Kravets
2024-08-01 14:30:00 +03:00
parent aea9075d4b
commit eeb5ac456e
3 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ test-driven methodologies, and modern toolchains for unrivaled success.
6.1.16 (2024-??-??)
~~~~~~~~~~~~~~~~~~~
* Upgraded the `Unity <https://docs.platformio.org/en/latest/advanced/unit-testing/frameworks/unity.html>`__ testing framework to version 2.6.0, incorporating the latest features and improvements for enhanced testing capabilities
* Upgraded the `Doctest <https://docs.platformio.org/en/latest/advanced/unit-testing/frameworks/doctest.html>`__ testing framework to version 2.4.11, the `GoogleTest <https://docs.platformio.org/en/latest/advanced/unit-testing/frameworks/doctest.html>`__ to version 1.15.2, and the `Unity <https://docs.platformio.org/en/latest/advanced/unit-testing/frameworks/unity.html>`__ to version 2.6.0, incorporating the latest features and improvements for enhanced testing capabilities
* Corrected an issue where the incorrect public class was imported for the ``DoctestTestRunner`` (`issue #4949 <https://github.com/platformio/platformio-core/issues/4949>`_)
6.1.15 (2024-04-25)

View File

@ -101,7 +101,7 @@ class DoctestTestCaseParser:
class DoctestTestRunner(TestRunnerBase):
EXTRA_LIB_DEPS = ["doctest/doctest@^2.4.9"]
EXTRA_LIB_DEPS = ["doctest/doctest@^2.4.11"]
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)

View File

@ -88,7 +88,7 @@ class GoogletestTestCaseParser:
class GoogletestTestRunner(TestRunnerBase):
EXTRA_LIB_DEPS = ["google/googletest@^1.12.1"]
EXTRA_LIB_DEPS = ["google/googletest@^1.15.2"]
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)