Lines Matching full:json
3 #include <nlohmann/json.hpp>
14 nlohmann::json j = {{"foo", "$bus"}}; in TEST()
21 nlohmann::json expected = 23; in TEST()
27 nlohmann::json j = {{"foo", "$TEST"}}; in TEST()
34 nlohmann::json expected = "Test"; in TEST()
40 nlohmann::json j = {{"foo", "the $TEST"}}; in TEST()
47 nlohmann::json expected = "the Test"; in TEST()
53 nlohmann::json j = {{"foo", "the $TEST worked"}}; in TEST()
60 nlohmann::json expected = "the Test worked"; in TEST()
66 nlohmann::json j = {{"foo", "the Test $TEST"}}; in TEST()
73 nlohmann::json expected = "the Test 23"; in TEST()
79 nlohmann::json j = {{"foo", "3 plus 1 equals $TEST + 1"}}; in TEST()
86 nlohmann::json expected = "3 plus 1 equals 4"; in TEST()
92 nlohmann::json j = {{"foo", "3 minus 1 equals $TEST - 1 !"}}; in TEST()
99 nlohmann::json expected = "3 minus 1 equals 2 !"; in TEST()
105 nlohmann::json j = {{"foo", "3 mod 2 equals $TEST % 2"}}; in TEST()
112 nlohmann::json expected = "3 mod 2 equals 1"; in TEST()
118 nlohmann::json j = {{"foo", "3 * 2 equals $TEST * 2"}}; in TEST()
125 nlohmann::json expected = "3 * 2 equals 6"; in TEST()
131 nlohmann::json j = {{"foo", "4 / 2 equals $TEST / 2"}}; in TEST()
138 nlohmann::json expected = "4 / 2 equals 2"; in TEST()
144 nlohmann::json j = {{"foo", "4 * 2 % 6 equals $TEST * 2 % 6"}}; in TEST()
151 nlohmann::json expected = "4 * 2 % 6 equals 2"; in TEST()
157 nlohmann::json j = {{"foo", "$FOO $BAR"}}; in TEST()
165 nlohmann::json expected = "foo bar"; in TEST()
171 nlohmann::json j = {{"foo", "4 / 2 equals $TEST / 2 $BAR"}}; in TEST()
179 nlohmann::json expected = "4 / 2 equals 2 bar"; in TEST()
184 nlohmann::json j = {{"foo", "4 / 2 equals $ADDRESS / 2 $BAR"}}; in TEST()
192 nlohmann::json expected = "4 / 2 equals 2 bar"; in TEST()
198 nlohmann::json j = {{"Address", "0x54"}, in TEST()
210 nlohmann::json expected = {{"Address", 84}, in TEST()
219 nlohmann::json j = {{"foo", "twelve is $TEST"}}; in TEST()
226 nlohmann::json expected = "twelve is 12"; in TEST()
232 nlohmann::json j = {{"foo", "0x54"}}; in TEST()
238 nlohmann::json expected = 84; in TEST()
244 nlohmann::json j = R"("foo")"_json; in TEST()
251 nlohmann::json j = R"("foo*")"_json; in TEST()
258 nlohmann::json j = R"("foobar")"_json; in TEST()
265 nlohmann::json j = R"("foo[")"_json; in TEST()
272 nlohmann::json j = R"("foo(?!bar)...foo")"_json; in TEST()
281 nlohmann::json j = R"("0")"_json; in TEST()
288 nlohmann::json j = R"("1")"_json; in TEST()
295 nlohmann::json j = R"("11")"_json; in TEST()
302 nlohmann::json j = R"("false")"_json; in TEST()
309 nlohmann::json j = R"("true")"_json; in TEST()
316 nlohmann::json j = R"("false")"_json; in TEST()
323 nlohmann::json j = R"("255")"_json; in TEST()
330 nlohmann::json j = R"("65535")"_json; in TEST()
337 nlohmann::json j = R"("false")"_json; in TEST()
344 nlohmann::json j = R"("true")"_json; in TEST()
351 nlohmann::json j = R"("11")"_json; in TEST()
358 nlohmann::json j = R"("-11")"_json; in TEST()
365 nlohmann::json j = R"("1*4")"_json; in TEST()
372 nlohmann::json j = R"("foo")"_json; in TEST()
379 nlohmann::json j = R"("123.4")"_json; in TEST()
386 nlohmann::json j = R"("-123.4")"_json; in TEST()
393 nlohmann::json j = R"("-123.4")"_json; in TEST()
400 nlohmann::json j = R"(false)"_json; in TEST()
407 nlohmann::json j = R"(true)"_json; in TEST()
414 nlohmann::json j = R"(false)"_json; in TEST()
421 nlohmann::json j = R"(true)"_json; in TEST()
428 nlohmann::json j = R"(true)"_json; in TEST()
435 nlohmann::json j = R"(true)"_json; in TEST()
442 nlohmann::json j = R"(false)"_json; in TEST()
449 nlohmann::json j = R"(false)"_json; in TEST()
456 nlohmann::json j = R"(true)"_json; in TEST()
463 nlohmann::json j = R"(true)"_json; in TEST()
470 nlohmann::json j = R"(false)"_json; in TEST()
477 nlohmann::json j = R"(false)"_json; in TEST()
484 nlohmann::json j = R"(false)"_json; in TEST()
491 nlohmann::json j = R"(true)"_json; in TEST()
498 nlohmann::json j = R"(true)"_json; in TEST()
505 nlohmann::json j = R"(11)"_json; in TEST()
512 nlohmann::json j = R"(1)"_json; in TEST()
519 nlohmann::json j = R"(0)"_json; in TEST()
526 nlohmann::json j = R"(11)"_json; in TEST()
533 nlohmann::json j = R"(11)"_json; in TEST()
540 nlohmann::json j = R"(65535)"_json; in TEST()
547 nlohmann::json j = R"(11)"_json; in TEST()
554 nlohmann::json j = R"(11)"_json; in TEST()
561 nlohmann::json j = R"(11)"_json; in TEST()
568 nlohmann::json j = R"(11)"_json; in TEST()
575 nlohmann::json j = R"(11)"_json; in TEST()
582 nlohmann::json j = R"(-11)"_json; in TEST()
589 nlohmann::json j = R"(-1)"_json; in TEST()
596 nlohmann::json j = R"(-11)"_json; in TEST()
603 nlohmann::json j = R"(-11)"_json; in TEST()
610 nlohmann::json j = R"(-124)"_json; in TEST()
617 nlohmann::json j = R"(-11)"_json; in TEST()
624 nlohmann::json j = R"(-11)"_json; in TEST()
631 nlohmann::json j = R"(-11)"_json; in TEST()
638 nlohmann::json j = R"(-11)"_json; in TEST()
645 nlohmann::json j = R"(0.0)"_json; in TEST()
652 nlohmann::json j = R"(0.0)"_json; in TEST()
659 nlohmann::json j = R"(1.0)"_json; in TEST()
666 nlohmann::json j = R"(-124.0)"_json; in TEST()
673 nlohmann::json j = R"(-124.0)"_json; in TEST()
680 nlohmann::json j = R"(124.7)"_json; in TEST()
686 nlohmann::json j = R"(-124.2)"_json; in TEST()
693 nlohmann::json j = R"(-124.3)"_json; in TEST()
700 nlohmann::json j = R"(-11.0)"_json; in TEST()
707 nlohmann::json j = R"(-11.2)"_json; in TEST()
714 nlohmann::json j = R"([1, 2])"_json; in TEST()
721 nlohmann::json j = R"([1, 2])"_json; in TEST()
728 nlohmann::json j = R"([1, 2])"_json; in TEST()
735 nlohmann::json j = R"([1, 2])"_json; in TEST()
742 nlohmann::json j = R"([1, 2])"_json; in TEST()
749 nlohmann::json j = R"([1, 2])"_json; in TEST()
756 nlohmann::json j = R"([1, 2])"_json; in TEST()
763 nlohmann::json j = R"([1, 2, 3])"_json; in TEST()
770 nlohmann::json j = R"([1, 2])"_json; in TEST()
777 nlohmann::json j = R"([])"_json; in TEST()
784 nlohmann::json j = R"([])"_json; in TEST()
791 nlohmann::json j = R"([1])"_json; in TEST()
798 nlohmann::json j = R"({"foo": "bar"})"_json; in TEST()
805 nlohmann::json j = R"({"foo": "bar"})"_json; in TEST()
812 nlohmann::json j = R"({"foo": "bar"})"_json; in TEST()
819 nlohmann::json j = R"({"foo": "bar"})"_json; in TEST()
826 nlohmann::json j = R"({"foo": "bar"})"_json; in TEST()
833 nlohmann::json j = R"({"foo": "bar"})"_json; in TEST()
840 nlohmann::json j = R"({"foo": "bar"})"_json; in TEST()
847 nlohmann::json j = R"(null)"_json; in TEST()
854 nlohmann::json j = R"(null)"_json; in TEST()
861 nlohmann::json j = R"(null)"_json; in TEST()
868 nlohmann::json j = R"(null)"_json; in TEST()
875 nlohmann::json j = R"(null)"_json; in TEST()
882 nlohmann::json j = R"(null)"_json; in TEST()
889 nlohmann::json j = R"(null)"_json; in TEST()