| 19 | namespace toft { |
| 20 | |
| 21 | TEST(String, WhiteSpace) |
| 22 | { |
| 23 | ASSERT_TRUE(IsWhiteString("")); |
| 24 | ASSERT_TRUE(IsWhiteString("\t\r\n ")); |
| 25 | ASSERT_FALSE(IsWhiteString("\t\r\\")); |
| 26 | ASSERT_TRUE(IsCharInString('\\', "c:\\")); |
| 27 | } |
| 28 | |
| 29 | TEST(String, Prefix) |
| 30 | { |
nothing calls this directly
no test coverage detected