| 132 | } |
| 133 | |
| 134 | void Write(const string& msg) { |
| 135 | ASSERT_TRUE(!reading_) << "Write() after starting to read"; |
| 136 | TF_ASSERT_OK(writer_->WriteRecord(StringPiece(msg))); |
| 137 | } |
| 138 | |
| 139 | #if defined(PLATFORM_GOOGLE) |
| 140 | void Write(const absl::Cord& msg) { |
no test coverage detected