-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtest_jim_expected.h
More file actions
16 lines (16 loc) · 937 Bytes
/
test_jim_expected.h
File metadata and controls
16 lines (16 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const char *test_cases_expected[] = {
"[null]",
"[false,true]",
"[-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,0,1,2,3,4,5,6,7,8,9,10]",
"[0.0,0.0,3.1415,2.71828,1.6,null,null,null]",
"[\"hello\",\"world\",\"\\n\\b\\t\",\"\\u0000\\u0000\\u0000\\u0000\"]",
"[[],[[]],[[[]]],[[[[]]]],[[[[[]]]]]]",
"{\"l\":{\"l\":{\"l\":0,\"r\":1},\"r\":{\"l\":2,\"r\":3}},\"r\":{\"l\":{\"l\":4,\"r\":5},\"r\":{\"l\":6,\"r\":7}}}",
"[]",
"[\n 69\n]",
"[\n 69,\n 420,\n 1337,\n 80085\n]",
"{}",
"{\n \"foo\": 69\n}",
"{\n \"foo\": 69,\n \"bar\": 420,\n \"baz\": 1337\n}",
"{\n \"integer\": 69,\n \"empty_array\": [],\n \"empty_object\": {},\n \"array_of_integers\": [\n 69,\n 420,\n 1337,\n 80085\n ],\n \"object_of_integers\": {\n \"foo\": 69,\n \"bar\": 420,\n \"baz\": 1337,\n \"karabaz\": 80085\n }\n}",
};