| 25 | : closed_(true), fname_(fname), test_name_(test_name) {} |
| 26 | |
| 27 | Status TestReportFile::Append(const string& content) { |
| 28 | if (closed_) return Status::OK(); |
| 29 | return log_file_->Append(content); |
| 30 | } |
| 31 | |
| 32 | Status TestReportFile::Close() { |
| 33 | if (closed_) return Status::OK(); |
no outgoing calls