| 375 | return fragments_[fragment_index]->has_started(); |
| 376 | } |
| 377 | bool HasStartedBatch(int fragment_index, int batch_index) { |
| 378 | return fragments_[fragment_index]->HasBatchStarted(batch_index); |
| 379 | } |
| 380 | |
| 381 | bool has_started_ = false; |
| 382 | std::vector<std::shared_ptr<MockFragment>> fragments_; |
nothing calls this directly
no test coverage detected