| 156 | void AssertValidUTF8(const std::string& s) { ASSERT_TRUE(IsValidUTF8(s)); } |
| 157 | |
| 158 | void AssertInvalidUTF8(const std::string& s) { ASSERT_TRUE(IsInvalidUTF8(s)); } |
| 159 | |
| 160 | void AssertValidASCII(const std::string& s) { |
| 161 | ASSERT_TRUE(IsValidASCII(s)); |
no test coverage detected