-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest_kvp.json
More file actions
39 lines (39 loc) · 1.12 KB
/
test_kvp.json
File metadata and controls
39 lines (39 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"decodeTest": {
"checkUint8IsDeHex": "0xde",
"checkUint8IsDeDec": 222,
"checkUint16IsDeadHex": "0xdead",
"checkUint16IsDeadDec": 57005,
"checkUint32IsDeadBeefHex": "0xdeadbeef",
"checkUint32IsDeadBeefDec": 3735928559,
"checkUint64IsDeadBeefHex": "0xdeadbeefdeadbeef",
"checkUint64IsDeadBeefDec": 16045690984833335023,
"checkStringDeadBeef": "the beef is dead",
"checkStringDeadBeef2": "the beef is also dead",
"checkStringDeadBeefNoQuotes": "the beef is dead",
"checkBoolFalse": false,
"checkBoolFALSE": "FALSE",
"checkBoolFaLse": "FaLSE",
"checkBoolTRUE": "TRUE",
"checkBooltrue": true,
"checkBoolTRuE": "TRuE",
"checkStringList": [
"stringA",
"stringB",
"stringC"
],
"checkUint32List": [
720,
800,
1080
],
"checkInt8Positive": 120,
"checkInt8Negative": -120,
"checkInt16Positive": 30000,
"checkInt16Negative": -30000,
"checkInt32Positive": 2000000000,
"checkInt32Negative": -2000000000,
"checkInt64Positive": 9000000000000000000,
"checkInt64Negative": -9000000000000000000
}
}