| 108 | } |
| 109 | |
| 110 | struct PrintReplayParameter |
| 111 | { |
| 112 | template<class ParamType> |
| 113 | std::string operator()(const testing::TestParamInfo<ParamType>& info) const |
| 114 | { |
| 115 | auto data = static_cast<ReplayTestData>(info.param); |
| 116 | return data.name; |
| 117 | } |
| 118 | }; |
| 119 | |
| 120 | INSTANTIATE_TEST_SUITE_P(Replay, ReplayTests, testing::ValuesIn(GetReplayFiles()), PrintReplayParameter()); |