| 29 | |
| 30 | template<> |
| 31 | static std::wstring ToString<Path::Type>(Path::Type const& type) |
| 32 | { |
| 33 | switch (type) |
| 34 | { |
| 35 | case Path::Type::File: return L"File"; |
| 36 | case Path::Type::Folder: return L"Folder"; |
| 37 | default: throw std::exception{}; |
| 38 | } |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | using namespace Microsoft::VisualStudio::CppUnitTestFramework; |
nothing calls this directly
no outgoing calls
no test coverage detected