takes a string of not escaped unquoted bytes.
| 113 | |
| 114 | // <unquoted> takes a string of not escaped unquoted bytes. |
| 115 | void TestUnescapedBytes(const std::string& unquoted) { |
| 116 | TestBytesLiteral(FormatBytesLiteral(unquoted)); |
| 117 | } |
| 118 | |
| 119 | void TestRawBytes(const std::string& unquoted) { |
| 120 | const std::string quote = (!absl::StrContains(unquoted, "'")) ? "'" : "\""; |
no test coverage detected