| 110 | } |
| 111 | |
| 112 | static void cjson_compare_should_compare_strings(void) |
| 113 | { |
| 114 | TEST_ASSERT_TRUE(compare_from_string("\"abcdefg\"", "\"abcdefg\"", true)); |
| 115 | TEST_ASSERT_TRUE(compare_from_string("\"abcdefg\"", "\"abcdefg\"", false)); |
| 116 | |
| 117 | TEST_ASSERT_FALSE(compare_from_string("\"ABCDEFG\"", "\"abcdefg\"", true)); |
| 118 | TEST_ASSERT_FALSE(compare_from_string("\"ABCDEFG\"", "\"abcdefg\"", false)); |
| 119 | } |
| 120 | |
| 121 | static void cjson_compare_should_compare_raw(void) |
| 122 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…