| 108 | } |
| 109 | |
| 110 | void success_helper(const void* a, const void* b, size_t s) { |
| 111 | EXPECT_TRUE(InlinedMemcmpEq(a, b, s)) |
| 112 | << "a is: " << std::string((char*)a, s) << std::endl |
| 113 | << "b is: " << std::string((char*)b, s) << std::endl; |
| 114 | } |
| 115 | |
| 116 | void failed_helper(const void* a, const void* b, size_t s) { |
| 117 | EXPECT_FALSE(InlinedMemcmpEq(a, b, s)) |
no test coverage detected