v1.13.0
版本发布时间: 2023-01-18 02:52:03
google/googletest最新发布版本:v1.15.2(2024-07-31 21:36:23)
Release Notes
GoogleTest will not accept patches of new features to the v1.13.x branch.
We recommend building GoogleTest from the latest commit instead.
Exceptional critical bug fixes may be considered.
C++ Language Support
- GoogleTest now requires at least C++14 and follows Google's Foundational C++ Support Policy. See this table for a list of currently supported versions compilers, platforms, and build tools.
Notable Changes
- Floating point prints full precision by default to aid in debugging (https://github.com/google/googletest/commit/9c332145b71c36a5bad9688312c79184f98601ff)
-
GTEST_FAIL_AT
now terminates the test (likeASSERT_*
), rather than failing and continuing (likeEXPECT_*
) (https://github.com/google/googletest/commit/6f149520a19c0bfd6a70075a733a69cd8b03ae94) - Added
testing::SrcDir()
, which returns the configured directory for test data files (https://github.com/google/googletest/commit/912db742531bf82efb01194bc08140416e3b3467)