| 31 | #endif |
| 32 | |
| 33 | std::string_view StringArea(const std::string& string) { |
| 34 | return {string.data(), string.capacity()}; |
| 35 | } |
| 36 | |
| 37 | // same as GTest ASSERT_PRED_FORMAT2 macro, but without the outer GTEST_ASSERT_ |
| 38 | #define COMPARE(val1, val2) \ |
no test coverage detected