Lines Matching defs:object
352 TEST_ASSERT_TRUE_MESSAGE(flag, "add item to object failed");
584 cJSON *object = cJSON_CreateObject();
588 flag = cJSON_AddItemToObject(object, "key", object);
589 TEST_ASSERT_FALSE_MESSAGE(flag, "add an object to itself should fail");
594 cJSON_Delete(object);
600 cJSON *object = cJSON_CreateObject();
604 TEST_ASSERT_NOT_NULL(object);
612 cJSON_AddItemToObject(object, number->string, number);
614 cJSON_Delete(object);
680 TEST_ASSERT_NULL_MESSAGE(return_value, "valuestring of reference object should not be changed");