| 27 | using namespace sampleprof; |
| 28 | |
| 29 | static ::testing::AssertionResult NoError(std::error_code EC) { |
| 30 | if (!EC) |
| 31 | return ::testing::AssertionSuccess(); |
| 32 | return ::testing::AssertionFailure() << "error " << EC.value() << ": " |
| 33 | << EC.message(); |
| 34 | } |
| 35 | |
| 36 | namespace { |
| 37 |
no test coverage detected