| 7 | #include <ThirdParty/catch2/catch.hpp> |
| 8 | |
| 9 | String TestNormalizePath(const StringView& input) |
| 10 | { |
| 11 | String path(input); |
| 12 | FileSystem::NormalizePath(path); |
| 13 | StringUtils::PathRemoveRelativeParts(path); |
| 14 | return path; |
| 15 | } |
| 16 | |
| 17 | TEST_CASE("StringUtils") |
| 18 | { |
no test coverage detected