blob: be4886c0e8477a74a0679421602f6f58c95f663f [file] [log] [blame]
Krzysztof Grobelny51f0fd52021-12-28 16:32:08 +01001#pragma once
2
3#include "types/duration_types.hpp"
4
5#include <gmock/gmock.h>
6
7template <class Ratio>
8inline void PrintTo(const std::chrono::duration<uint64_t, Ratio>& o,
9 std::ostream* os)
10{
11 (*os) << std::chrono::duration_cast<Milliseconds>(o).count() << "us";
12}