| 80 | } |
| 81 | |
| 82 | Status TestReporter::SetProperty(const string& name, const string& value) { |
| 83 | if (report_file_.IsClosed()) return Status::OK(); |
| 84 | (*benchmark_entry_.mutable_extras())[name].set_string_value(value); |
| 85 | return Status::OK(); |
| 86 | } |
| 87 | |
| 88 | Status TestReporter::SetProperty(const string& name, double value) { |
| 89 | if (report_file_.IsClosed()) return Status::OK(); |