| 375 | } |
| 376 | uint64_t NowMicros() override { return target_->NowMicros(); } |
| 377 | void SleepForMicroseconds(int micros) override { |
| 378 | target_->SleepForMicroseconds(micros); |
| 379 | } |
| 380 | |
| 381 | private: |
| 382 | Env* target_; |
nothing calls this directly
no test coverage detected