googletest
googletest copied to clipboard
GoogleTest - Google Testing and Mocking Framework
### Does the feature exist in the most recent commit? No ### Why do we need this feature? To prevent bugs. ### Describe the proposal. Currently, `MOCK_METHOD` expects something like...
### Describe the issue On IA-32 floating point literals are internally different, so a simple string compare with Print is not portable: ``` ~/googletest/googletest/test/googletest-printers-test.cc:464: Failure Expected equality of these values:...
### Does the feature exist in the most recent commit? No. ### Why do we need this feature? To be able to compile tests that use the C++ parallel algorithms...
### Does the feature exist in the most recent commit? No ### Why do we need this feature? Our codebase defines `ASSERT_THROW`, as does gtest, which obviously clashes ### Describe...
### Describe the issue I am using Gtest and Gmock with MingW, The following linking error is occurring for me. ### Steps to reproduce the problem undefined reference to 'testing::internal::GetWithouMatchers();...
### Does the feature exist in the most recent commit? no ### Why do we need this feature? to include death tests in coverage reports ### Describe the proposal. Currently...
### Describe the issue I would like to apply a label to tests and to filter the execution based on the label. example: https://www.baeldung.com/junit-filtering-tests This is useful for multiple scenarios:...
I recently had this failure on a CI platform: ``` C:/projects/arrow/cpp/src/arrow/util/decimal_test.cc(557): error: Expected equality of these values: dec.ToReal(scale) Which is: 1e-163 expected Which is: 1e-163 ``` Needless to say, this...
### Describe the issue Today EXPECT_CALL only output custom message on fail. It would be nice if it also output custom message on pass if developer choose so with a...
### Describe the issue We have an extensive logging system around our tests and having the current scope there using `SCOPED_TRACE `would be nice. Could the enter/leave of a `SCOPED_TRACE`...