| 179 | } |
| 180 | |
| 181 | void StartFile(const std::string &path, const FileMode mode) { |
| 182 | if(!this->HasStartedFile()) { |
| 183 | this->StartFileImpl(path, mode); |
| 184 | this->started_file_mode = mode; |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | void EndFile() { |
| 189 | if(this->HasStartedFile()) { |
no test coverage detected