| 222 | |
| 223 | bool HasStarted(int batch_number) { return has_started_[batch_number]; } |
| 224 | bool HasDelivered(int batch_number) { |
| 225 | return scan_tasks_[batch_number].batch_future.is_finished(); |
| 226 | } |
| 227 | |
| 228 | std::vector<MockScanTask> scan_tasks_; |
| 229 | std::vector<bool> has_started_; |
no test coverage detected