| 140 | |
| 141 | template<class P> |
| 142 | std::string GetTestParamHash(const ::testing::WithParamInterface<P> &info) |
| 143 | { |
| 144 | return detail::GetTestParamHashHelper(info.GetParam()); |
| 145 | } |
| 146 | |
| 147 | // We don't use googletest's default test suffix generator (that ascending number) |
| 148 | // because they aren't tied with the test parameter. If some platform doesn't have |
nothing calls this directly
no test coverage detected