googletest/googlemock/test
Zhanyong Wan 3af834740f Improve the failure messages of ElementsAre(), ElementsAreArray(), etc.
NOTE: if you suspect that this change breaks your build, it's likely that your tests depend on the exact messages of `ElementsAre()` and friends. The messages are implementation details of these matcher and are subject to change without notice. Depending on the messages is not supported. In that case, please rewrite your tests to avoid the dependency.

When the array being matched is long, it can be hard for the user to find the mismatched element in the message generated by `ElementsAre()` or `ElementsAreArray()` - even though these matchers print the index of the mismatched element, the user still has to count to find the actual element and its corresponding matcher.

With this change, these matchers will include the actual value and corresponding matcher in the failure message, making it easier for the user.

Also make a small style improvement: now it's advised to write
```
EXPECT_EQ(actual, expected);
```
as opposed to
```
EXPECT_EQ(expected, actual);
```

PiperOrigin-RevId: 738039133
Change-Id: I3b94f7d01a6a4c92e2daf268df8cfb04a21d4294
2025-03-18 09:42:12 -07:00
..
BUILD.bazel Split gmock-matchers_test into 4 smaller test #3653 2022-03-23 09:08:04 -07:00
gmock-actions_test.cc Require C++17 2025-02-12 09:44:07 -08:00
gmock-cardinalities_test.cc Use '=default' to define trivial constructor/destructors 2023-04-21 10:41:25 -07:00
gmock-function-mocker_test.cc Automated Code Change 2024-10-04 20:54:14 -07:00
gmock-internal-utils_test.cc Add missing std includes 2023-04-20 14:29:09 -07:00
gmock-matchers-arithmetic_test.cc Allow DistanceFrom() to use user-defined abs() by default. 2025-03-11 06:58:43 -07:00
gmock-matchers-comparisons_test.cc Enable safe matcher casts from Matcher<const T&> to Matcher<T>. 2025-01-15 09:16:57 -08:00
gmock-matchers-containers_test.cc Improve the failure messages of ElementsAre(), ElementsAreArray(), etc. 2025-03-18 09:42:12 -07:00
gmock-matchers-misc_test.cc Enable safe matcher casts from Matcher<const T&> to Matcher<T>. 2025-01-15 09:16:57 -08:00
gmock-matchers_test.h Fix formatting of C++ files 2023-01-24 11:10:09 -08:00
gmock-more-actions_test.cc Add SaveArgByMove 2025-02-10 10:22:27 -08:00
gmock-nice-strict_test.cc Use '=default' to define trivial constructor/destructors 2023-04-21 10:41:25 -07:00
gmock-port_test.cc Running clang-format over all of GoogleTest 2022-03-15 13:42:11 -07:00
gmock-pp-string_test.cc Running clang-format over all of GoogleTest 2022-03-15 13:42:11 -07:00
gmock-pp_test.cc Automated Code Change 2024-08-29 08:17:22 -07:00
gmock-spec-builders_test.cc Require C++17 2025-02-12 09:44:07 -08:00
gmock_all_test.cc Split gmock-matchers_test into 4 smaller test #3653 2022-03-23 09:08:04 -07:00
gmock_ex_test.cc Add missing std includes 2023-04-20 14:29:09 -07:00
gmock_leak_test.py Fix formatting in subset of Python files 2023-01-25 09:14:26 -08:00
gmock_leak_test_.cc Use '=default' to define trivial constructor/destructors 2023-04-21 10:41:25 -07:00
gmock_link2_test.cc Running clang-format over all of GoogleTest 2022-03-15 13:42:11 -07:00
gmock_link_test.cc Running clang-format over all of GoogleTest 2022-03-15 13:42:11 -07:00
gmock_link_test.h Run clang-format. 2024-07-23 03:57:23 -07:00
gmock_output_test.py Fix formatting in subset of Python files 2023-01-25 09:14:26 -08:00
gmock_output_test_.cc Merge branch 'main' into fixes_std_pair_diff 2023-05-01 14:27:38 -04:00
gmock_output_test_golden.txt Merge pull request #4146 from lygstate:fixes_std_pair_diff 2023-05-02 07:52:02 -07:00
gmock_stress_test.cc Running clang-format over all of GoogleTest 2022-03-15 13:42:11 -07:00
gmock_test.cc Use the empty method to check for emptiness 2023-04-21 08:42:42 -07:00
gmock_test_utils.py Remove pylint disable comments that no longer trigger warnings 2023-01-25 12:35:34 -08:00