Helper to call FixSCCEncodedNegative and return the result in a new string. */
| 397 | |
| 398 | /* Helper to call FixSCCEncodedNegative and return the result in a new string. */ |
| 399 | static std::string FixSCCEncodedNegativeWrapper(const std::string &str) |
| 400 | { |
| 401 | std::string result = str; |
| 402 | FixSCCEncodedNegative(result); |
| 403 | return result; |
| 404 | } |
| 405 | |
| 406 | TEST_CASE("FixSCCEncodedNegative") |
| 407 | { |
no test coverage detected