| 11 | using namespace base; |
| 12 | |
| 13 | TEST(Path, IsPathSeparator) |
| 14 | { |
| 15 | EXPECT_TRUE (is_path_separator('\\')); |
| 16 | EXPECT_TRUE (is_path_separator('/')); |
| 17 | EXPECT_FALSE(is_path_separator('a')); |
| 18 | EXPECT_FALSE(is_path_separator('+')); |
| 19 | EXPECT_FALSE(is_path_separator(':')); |
| 20 | } |
| 21 | |
| 22 | TEST(Path, GetFilePath) |
| 23 | { |
nothing calls this directly
no test coverage detected