googletest
googletest copied to clipboard
GoogleTest - Google Testing and Mocking Framework
description as title expect Test::HasFailure()==true (actually ==false) **Steps to reproduce the bug** struct MyTest : public Test {  ~MyTest()  {   if (Test::HasFailure()) "do sth"  } }; TEST_F(MyTest, test1) {  ......
Added additional defines to correctly detect the NXP QN9090 MCU platform and allow for native googletest compability.
The version of googletest available to the Platformio framework is stale due to the removal of the library.json file from the googletest repo. To continue to support this community, it...
FITLER_OUT_SEH_TESTS_FLAG -> FILTER_OUT_SEH_TESTS_FLAG
Ensures project configures with 3.13 since it's very easy to write code that doesn't respect the minimum.
### Describe the issue When launching tests on a platform that does not support filesystem, I get an error saying that gtest cannot output a file without a file system...
### Does the feature exist in the most recent commit? No ### Why do we need this feature? If there is a crash/access violation or other SEH exception in a...
The cmake flag -DBUILD_GMOCK=OFF will have be reset causing gmock to be built regardless. This will cause issues when building other Google libraries such as protobuf in the same CMake...
### Describe the issue This could be seen as a bug or a feature request. GTest fails to print `std::basic_string_view` for any non-char `T` (e.g. `wstring_view` or `u8string_view`) which is...