| 7 | using namespace std; |
| 8 | |
| 9 | TEST(EscapeSymbols) |
| 10 | { |
| 11 | string_view strIn = "\\\\ ''"sv; |
| 12 | auto str = webifc::parsing::p21decode(strIn); |
| 13 | ASSERT_EQ(str, "\\ '"); |
| 14 | } |
| 15 | |
| 16 | TEST(EscapeXTest) |
| 17 | { |
nothing calls this directly
no test coverage detected