| 90 | } |
| 91 | |
| 92 | static void cjson_compare_should_compare_null(void) |
| 93 | { |
| 94 | TEST_ASSERT_TRUE(compare_from_string("null", "null", true)); |
| 95 | TEST_ASSERT_TRUE(compare_from_string("null", "null", false)); |
| 96 | |
| 97 | TEST_ASSERT_FALSE(compare_from_string("null", "true", true)); |
| 98 | TEST_ASSERT_FALSE(compare_from_string("null", "true", false)); |
| 99 | } |
| 100 | |
| 101 | static void cjson_compare_should_not_accept_invalid_types(void) |
| 102 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…