Lines Matching refs:RUN_TEST

470     RUN_TEST(cjson_add_null_should_add_null);
471 RUN_TEST(cjson_add_null_should_fail_with_null_pointers);
472 RUN_TEST(cjson_add_null_should_fail_on_allocation_failure);
474 RUN_TEST(cjson_add_true_should_add_true);
475 RUN_TEST(cjson_add_true_should_fail_with_null_pointers);
476 RUN_TEST(cjson_add_true_should_fail_on_allocation_failure);
478 RUN_TEST(cjson_create_int_array_should_fail_on_allocation_failure);
479 RUN_TEST(cjson_create_float_array_should_fail_on_allocation_failure);
480 RUN_TEST(cjson_create_double_array_should_fail_on_allocation_failure);
481 RUN_TEST(cjson_create_string_array_should_fail_on_allocation_failure);
483 RUN_TEST(cjson_add_false_should_add_false);
484 RUN_TEST(cjson_add_false_should_fail_with_null_pointers);
485 RUN_TEST(cjson_add_false_should_fail_on_allocation_failure);
487 RUN_TEST(cjson_add_bool_should_add_bool);
488 RUN_TEST(cjson_add_bool_should_fail_with_null_pointers);
489 RUN_TEST(cjson_add_bool_should_fail_on_allocation_failure);
491 RUN_TEST(cjson_add_number_should_add_number);
492 RUN_TEST(cjson_add_number_should_fail_with_null_pointers);
493 RUN_TEST(cjson_add_number_should_fail_on_allocation_failure);
496 RUN_TEST(cjson_add_int64_number_should_add_int64_number);
497 RUN_TEST(cjson_add_int64_number_should_fail_with_null_pointers);
498 RUN_TEST(cjson_add_int64_number_should_fail_on_allocation_failure);
501 RUN_TEST(cjson_add_string_should_add_string);
502 RUN_TEST(cjson_add_string_should_fail_with_null_pointers);
503 RUN_TEST(cjson_add_string_should_fail_on_allocation_failure);
505 RUN_TEST(cjson_add_raw_should_add_raw);
506 RUN_TEST(cjson_add_raw_should_fail_with_null_pointers);
507 RUN_TEST(cjson_add_raw_should_fail_on_allocation_failure);
509 RUN_TEST(cJSON_add_object_should_add_object);
510 RUN_TEST(cjson_add_object_should_fail_with_null_pointers);
511 RUN_TEST(cjson_add_object_should_fail_on_allocation_failure);
513 RUN_TEST(cJSON_add_array_should_add_array);
514 RUN_TEST(cjson_add_array_should_fail_with_null_pointers);
515 RUN_TEST(cjson_add_array_should_fail_on_allocation_failure);