diff options
author | Smokowski, Kevin (ks6305) <kevin.smokowski@att.com> | 2019-12-18 21:29:24 +0000 |
---|---|---|
committer | Smokowski, Kevin (ks6305) <kevin.smokowski@att.com> | 2019-12-18 21:46:54 +0000 |
commit | 767b8eac24dba80a8aa815879c13b721015b7ab4 (patch) | |
tree | 71065a9309de1e2f4410a5d99197526e5ade1dee /restapi-call-node/provider/src/test/resources/ArrayMenu.json | |
parent | dffc1fd635470b0fc0e940f78e69d8f0ab0d14f0 (diff) |
RestapiCallNode unit tests
Validate JsonParser in RestapiCallNode
Issue-ID: CCSDK-2008
Signed-off-by: Smokowski, Kevin (ks6305) <kevin.smokowski@att.com>
Change-Id: Idd062d9614b89b1c0142591af600ea8ff61c019a
Diffstat (limited to 'restapi-call-node/provider/src/test/resources/ArrayMenu.json')
-rw-r--r-- | restapi-call-node/provider/src/test/resources/ArrayMenu.json | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/restapi-call-node/provider/src/test/resources/ArrayMenu.json b/restapi-call-node/provider/src/test/resources/ArrayMenu.json new file mode 100644 index 000000000..b12f16315 --- /dev/null +++ b/restapi-call-node/provider/src/test/resources/ArrayMenu.json @@ -0,0 +1,41 @@ +[{
+ "id": "1",
+ "type": "pizza",
+ "name": "plain",
+ "calories": 1000,
+ "vegetarian": true
+ }, {
+ "id": "2",
+ "type": "pizza",
+ "name": "Tuesday Special",
+ "calories": 2000,
+ "vegetarian": false,
+ "topping":
+ [{
+ "id": "1",
+ "name": "onion"
+ }, {
+ "id": "2",
+ "name": "pepperoni"
+ }
+ ]
+ }, {
+ "id": "3",
+ "type": "pizza",
+ "name": "House Special",
+ "calories": 1500,
+ "vegetarian": true,
+ "topping":
+ [{
+ "id": "3",
+ "name": "basil"
+ }, {
+ "id": "4",
+ "name": "fresh mozzarella"
+ }, {
+ "id": "5",
+ "name": "tomato"
+ }
+ ]
+ }
+]
|