| 10 | |
| 11 | template <typename TCallBack> |
| 12 | ui64 Run(TCallBack&& callBack) { |
| 13 | TSimpleTimer timer; |
| 14 | callBack(); |
| 15 | return timer.Get().MicroSeconds(); |
| 16 | } |
| 17 | |
| 18 | static TString GetRequestsWithDecoding(const TString& inputPath, const NBlockCodecs::ICodec* codec) { |
| 19 | TIFStream inputFileStream(inputPath); |
no test coverage detected