Lines Matching defs:string
25 #include <string.h>
325 cJSON *string = NULL;
327 cJSON_AddStringToObject(root, "string", "Hello World!");
329 TEST_ASSERT_NOT_NULL(string = cJSON_GetObjectItemCaseSensitive(root, "string"));
330 TEST_ASSERT_EQUAL_INT(string->type, cJSON_String);
331 TEST_ASSERT_EQUAL_STRING(string->valuestring, "Hello World!");
340 TEST_ASSERT_NULL(cJSON_AddStringToObject(NULL, "string", "string"));
341 TEST_ASSERT_NULL(cJSON_AddStringToObject(root, NULL, "string"));
352 TEST_ASSERT_NULL(cJSON_AddStringToObject(root, "string", "string"));