googletest
googletest copied to clipboard
GoogleTest - Google Testing and Mocking Framework
I was interested to see if there are solutions to compare deeply nested structs in C++ where differences in the structs are clearly highlighted on failure. This is something that...
This PR adds functionality to instantly invoke a mock object leak check (as currently already done at program end) in order to provide a more fine grained leak check over...
Hi, First off thank you for this fantastic project. I often find myself going through the gtest or gmock markdowns and wishing there was a TOC at the beginning. Is...
The [advanced doc](https://github.com/google/googletest/blame/master/googletest/docs/advanced.md#L407) says `you can use gMock's EqualsProto to compare protos in your tests`, but I find the `EqualsProto` is **not** defined inside gMock but in the nucleus repo...
### Does the feature exist in the most recent commit? No. ### Why do we need this feature? This proposal is a reintroduction of #561. Our team at Microsoft is...
### Does the feature exist in the most recent commit? No ### Why do we need this feature? To clarify the usage of parametrized tests and avoid Valgrind warnings. ###...
I have read https://github.com/google/googletest/blob/master/googlemock/docs/CookBook.md#knowing-when-to-expect and understand and agree with the motivation behind uninteresting calls. However, even though I have added an ```ON_CALL(Foo, Bar).WillByDefault(Return());``` I get a uninteresting mock function call...
### Does the feature exist in the most recent commit? no ### Why do we need this feature? It would be greet to be able to check which version of...