| 152 | } |
| 153 | |
| 154 | static void parse_object_should_not_parse_non_objects(void) |
| 155 | { |
| 156 | assert_not_object(""); |
| 157 | assert_not_object("{"); |
| 158 | assert_not_object("}"); |
| 159 | assert_not_object("[\"hello\",{}]"); |
| 160 | assert_not_object("42"); |
| 161 | assert_not_object("3.14"); |
| 162 | assert_not_object("\"{}hello world!\n\""); |
| 163 | } |
| 164 | |
| 165 | int CJSON_CDECL main(void) |
| 166 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…