| 39 | namespace { |
| 40 | |
| 41 | static void EXPECT_SummaryMatches(const Summary& actual, |
| 42 | const string& expected_str) { |
| 43 | Summary expected; |
| 44 | CHECK(protobuf::TextFormat::ParseFromString(expected_str, &expected)); |
| 45 | EXPECT_EQ(expected.DebugString(), actual.DebugString()); |
| 46 | } |
| 47 | |
| 48 | class SummaryScalarOpTest : public OpsTestBase { |
| 49 | protected: |