| 65 | } |
| 66 | |
| 67 | static void parse_array_should_parse_empty_arrays(void) |
| 68 | { |
| 69 | assert_parse_array("[]"); |
| 70 | assert_has_no_child(item); |
| 71 | |
| 72 | assert_parse_array("[\n\t]"); |
| 73 | assert_has_no_child(item); |
| 74 | } |
| 75 | |
| 76 | |
| 77 | static void parse_array_should_parse_arrays_with_one_element(void) |
nothing calls this directly
no test coverage detected
searching dependent graphs…