| 8897 | |
| 8898 | template <typename T> |
| 8899 | ::std::string PrintToString(const T& value) { |
| 8900 | ::std::stringstream ss; |
| 8901 | internal::UniversalTersePrinter<T>::Print(value, &ss); |
| 8902 | return ss.str(); |
| 8903 | } |
| 8904 | |
| 8905 | } // namespace testing |
| 8906 |
nothing calls this directly
no outgoing calls
no test coverage detected