| 74 | } |
| 75 | |
| 76 | static void parse_object_should_parse_empty_objects(void) |
| 77 | { |
| 78 | assert_parse_object("{}"); |
| 79 | assert_has_no_child(item); |
| 80 | reset(item); |
| 81 | |
| 82 | assert_parse_object("{\n\t}"); |
| 83 | assert_has_no_child(item); |
| 84 | reset(item); |
| 85 | } |
| 86 | |
| 87 | static void parse_object_should_parse_objects_with_one_element(void) |
| 88 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…