| 828 | |
| 829 | template<typename E> |
| 830 | std::string convertUnknownEnumToString( E e ) { |
| 831 | return ::Catch::Detail::stringify(static_cast<typename std::underlying_type<E>::type>(e)); |
| 832 | } |
| 833 | |
| 834 | #if defined(_MANAGED) |
| 835 | template <typename T> |
no test coverage detected