/third_party/cJSON/tests/ |
H A D | parse_hex4.c | 49 TEST_ASSERT_EQUAL_INT(0xBEEF, parse_hex4((const unsigned char*)"beef")); in parse_hex4_should_parse_mixed_case() 50 TEST_ASSERT_EQUAL_INT(0xBEEF, parse_hex4((const unsigned char*)"beeF")); in parse_hex4_should_parse_mixed_case() 51 TEST_ASSERT_EQUAL_INT(0xBEEF, parse_hex4((const unsigned char*)"beEf")); in parse_hex4_should_parse_mixed_case() 52 TEST_ASSERT_EQUAL_INT(0xBEEF, parse_hex4((const unsigned char*)"beEF")); in parse_hex4_should_parse_mixed_case() 53 TEST_ASSERT_EQUAL_INT(0xBEEF, parse_hex4((const unsigned char*)"bEef")); in parse_hex4_should_parse_mixed_case() 54 TEST_ASSERT_EQUAL_INT(0xBEEF, parse_hex4((const unsigned char*)"bEeF")); in parse_hex4_should_parse_mixed_case() 55 TEST_ASSERT_EQUAL_INT(0xBEEF, parse_hex4((const unsigned char*)"bEEf")); in parse_hex4_should_parse_mixed_case() 56 TEST_ASSERT_EQUAL_INT(0xBEEF, parse_hex4((const unsigned char*)"bEEF")); in parse_hex4_should_parse_mixed_case() 57 TEST_ASSERT_EQUAL_INT(0xBEEF, parse_hex4((const unsigned char*)"Beef")); in parse_hex4_should_parse_mixed_case() 58 TEST_ASSERT_EQUAL_INT( in parse_hex4_should_parse_mixed_case() [all...] |
H A D | cjson_add.c | 56 TEST_ASSERT_EQUAL_INT(null->type, cJSON_NULL); in cjson_add_null_should_add_null() 92 TEST_ASSERT_EQUAL_INT(true_item->type, cJSON_True); in cjson_add_true_should_add_true() 172 TEST_ASSERT_EQUAL_INT(false_item->type, cJSON_False); in cjson_add_false_should_add_false() 209 TEST_ASSERT_EQUAL_INT(true_item->type, cJSON_True); in cjson_add_bool_should_add_bool() 214 TEST_ASSERT_EQUAL_INT(false_item->type, cJSON_False); in cjson_add_bool_should_add_bool() 251 TEST_ASSERT_EQUAL_INT(number->type, cJSON_Number); in cjson_add_number_should_add_number() 253 TEST_ASSERT_EQUAL_INT(number->valueint, 42); in cjson_add_number_should_add_number() 291 TEST_ASSERT_EQUAL_INT(number->type, cJSON_Number | cJSON_IsInt64); in cjson_add_int64_number_should_add_int64_number() 330 TEST_ASSERT_EQUAL_INT(string->type, cJSON_String); in cjson_add_string_should_add_string() 367 TEST_ASSERT_EQUAL_INT(ra in cjson_add_raw_should_add_raw() [all...] |
H A D | parse_array.c | 140 TEST_ASSERT_EQUAL_INT(i, 7); in parse_array_should_parse_arrays_with_multiple_elements()
|
H A D | parse_number.c | 54 TEST_ASSERT_EQUAL_INT(integer, item->valueint); in assert_parse_number()
|
H A D | parse_object.c | 149 TEST_ASSERT_EQUAL_INT(i, 7); in parse_object_should_parse_objects_with_multiple_elements()
|
H A D | misc_tests.c | 540 TEST_ASSERT_EQUAL_INT(cJSON_IsReference | cJSON_String, string_reference->type); in cjson_create_string_reference_should_create_a_string_reference() 558 TEST_ASSERT_EQUAL_INT(cJSON_Object | cJSON_IsReference, number_reference->type); in cjson_create_object_reference_should_create_an_object_reference() 576 TEST_ASSERT_EQUAL_INT(cJSON_Array | cJSON_IsReference, number_reference->type); in cjson_create_array_reference_should_create_an_array_reference()
|
/third_party/cJSON/tests/unity/extras/fixture/test/ |
H A D | template_fixture_tests.c | 26 TEST_ASSERT_EQUAL_INT(0, data); in TEST() 31 TEST_ASSERT_EQUAL_INT(0, data); in TEST() 38 TEST_ASSERT_EQUAL_INT(7, data); in TEST()
|
/third_party/unity/extras/fixture/test/ |
H A D | template_fixture_tests.c | 26 TEST_ASSERT_EQUAL_INT(0, data); in TEST() 31 TEST_ASSERT_EQUAL_INT(0, data); in TEST() 38 TEST_ASSERT_EQUAL_INT(7, data); in TEST()
|
/third_party/unity/test/tests/ |
H A D | test_unity_integers.c | 39 TEST_ASSERT_EQUAL_INT(3982, 3983); in testNotEqualInts() 210 TEST_ASSERT_EQUAL_INT(1837, 1837); in testEqualInts() 211 TEST_ASSERT_EQUAL_INT(-27365, -27365); in testEqualInts() 212 TEST_ASSERT_EQUAL_INT(v0, v1); in testEqualInts() 213 TEST_ASSERT_EQUAL_INT(19467, v1); in testEqualInts() 214 TEST_ASSERT_EQUAL_INT(v0, 19467); in testEqualInts() 215 TEST_ASSERT_EQUAL_INT(*p0, v1); in testEqualInts() 216 TEST_ASSERT_EQUAL_INT(*p0, *p1); in testEqualInts() 217 TEST_ASSERT_EQUAL_INT(*p0, 19467); in testEqualInts() 609 TEST_ASSERT_EQUAL_INT(183 in testEqualShorts() [all...] |
H A D | test_unity_core.c | 151 TEST_ASSERT_EQUAL_INT(0U, Unity.TestFailures); in testPreviousPass()
|
/third_party/cJSON/tests/unity/test/tests/ |
H A D | testunity.c | 154 TEST_ASSERT_EQUAL_INT(0U, Unity.TestFailures); in testPreviousPass() 245 TEST_ASSERT_EQUAL_INT(3982, 3983); in testNotEqualInts() 407 TEST_ASSERT_EQUAL_INT(1837, 1837); in testEqualInts() 408 TEST_ASSERT_EQUAL_INT(-27365, -27365); in testEqualInts() 409 TEST_ASSERT_EQUAL_INT(v0, v1); in testEqualInts() 410 TEST_ASSERT_EQUAL_INT(19467, v1); in testEqualInts() 411 TEST_ASSERT_EQUAL_INT(v0, 19467); in testEqualInts() 412 TEST_ASSERT_EQUAL_INT(*p0, v1); in testEqualInts() 413 TEST_ASSERT_EQUAL_INT(*p0, *p1); in testEqualInts() 414 TEST_ASSERT_EQUAL_INT(*p in testEqualInts() [all...] |
/third_party/unity/extras/bdd/test/ |
H A D | test_bdd.c | 75 TEST_ASSERT_EQUAL_INT(cartItemCount, 1); in test_bdd_empty_cart()
|
/third_party/cJSON/tests/unity/extras/fixture/src/ |
H A D | unity_fixture.h | 75 #define LONGS_EQUAL(expected, actual) TEST_ASSERT_EQUAL_INT((expected), (actual))
|
/third_party/unity/extras/fixture/src/ |
H A D | unity_fixture.h | 85 #define LONGS_EQUAL(expected, actual) TEST_ASSERT_EQUAL_INT((expected), (actual))
|
/third_party/cJSON/tests/unity/src/ |
H A D | unity.h | 128 #define TEST_ASSERT_EQUAL_INT(expected, actual) UNITY_TEST_ASSERT_EQUAL_INT((expected), (actual), __LINE__, NULL) macro
|
/third_party/unity/src/ |
H A D | unity.h | 145 #define TEST_ASSERT_EQUAL_INT(expected, actual) UNITY_TEST_ASSERT_EQUAL_INT((expected), (actual), __LINE__, NULL) macro
|