| 99 | } |
| 100 | |
| 101 | static void parse_string_should_not_parse_invalid_backslash(void) |
| 102 | { |
| 103 | assert_not_parse_string("Abcdef\\123"); |
| 104 | reset(item); |
| 105 | assert_not_parse_string("Abcdef\\e23"); |
| 106 | reset(item); |
| 107 | } |
| 108 | |
| 109 | static void parse_string_should_not_overflow_with_closing_backslash(void) |
| 110 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…