Lines Matching refs:TEST_ASSERT_TRUE
63 TEST_ASSERT_TRUE(compare_from_string("1", "1", true));
64 TEST_ASSERT_TRUE(compare_from_string("1", "1", false));
65 TEST_ASSERT_TRUE(compare_from_string("0.0001", "0.0001", true));
66 TEST_ASSERT_TRUE(compare_from_string("0.0001", "0.0001", false));
67 TEST_ASSERT_TRUE(compare_from_string("1E100", "10E99", false));
78 TEST_ASSERT_TRUE(compare_from_string("1LL", "1LL", true));
79 TEST_ASSERT_TRUE(compare_from_string("1LL", "1LL", false));
80 TEST_ASSERT_TRUE(compare_from_string("9223372036854775807LL", "9223372036854775807LL", true));
81 TEST_ASSERT_TRUE(compare_from_string("9223372036854775807LL", "9223372036854775807LL", false));
82 TEST_ASSERT_TRUE(compare_from_string("-9223372036854775808LL", "-9223372036854775808LL", true));
83 TEST_ASSERT_TRUE(compare_from_string("-9223372036854775808LL", "-9223372036854775808LL", false));
93 TEST_ASSERT_TRUE(compare_from_string("true", "true", true));
94 TEST_ASSERT_TRUE(compare_from_string("true", "true", false));
97 TEST_ASSERT_TRUE(compare_from_string("false", "false", true));
98 TEST_ASSERT_TRUE(compare_from_string("false", "false", false));
109 TEST_ASSERT_TRUE(compare_from_string("null", "null", true));
110 TEST_ASSERT_TRUE(compare_from_string("null", "null", false));
129 TEST_ASSERT_TRUE(compare_from_string("\"abcdefg\"", "\"abcdefg\"", true));
130 TEST_ASSERT_TRUE(compare_from_string("\"abcdefg\"", "\"abcdefg\"", false));
149 TEST_ASSERT_TRUE(cJSON_Compare(raw1, raw2, true));
150 TEST_ASSERT_TRUE(cJSON_Compare(raw1, raw2, false));
158 TEST_ASSERT_TRUE(compare_from_string("[]", "[]", true));
159 TEST_ASSERT_TRUE(compare_from_string("[]", "[]", false));
161 TEST_ASSERT_TRUE(compare_from_string("[false,true,null,42,\"string\",[],{}]", "[false, true, null, 42, \"string\", [], {}]", true));
162 TEST_ASSERT_TRUE(compare_from_string("[false,true,null,42,\"string\",[],{}]", "[false, true, null, 42, \"string\", [], {}]", false));
164 TEST_ASSERT_TRUE(compare_from_string("[[[1], 2]]", "[[[1], 2]]", true));
165 TEST_ASSERT_TRUE(compare_from_string("[[[1], 2]]", "[[[1], 2]]", false));
177 TEST_ASSERT_TRUE(compare_from_string("{}", "{}", true));
178 TEST_ASSERT_TRUE(compare_from_string("{}", "{}", false));
180 TEST_ASSERT_TRUE(compare_from_string(
188 TEST_ASSERT_TRUE(compare_from_string(