Update json data

This commit is contained in:
psysane 2018-06-11 21:25:53 +05:30
parent 8ebe69f176
commit 36eacfb3c3
2 changed files with 23 additions and 21 deletions

View File

@ -1,21 +1,23 @@
{ {
"items": { "items":{
"book": [ "book":[
{ {
"author": "Arthur Conan Doyle", "author":"Arthur Conan Doyle",
"title": "Sherlock Holmes", "title":"Sherlock Holmes",
"price": 8.99 "price":8.99
}, },
{ {
"author": "J. R. R. Tolkien", "author":"J. R. R. Tolkien",
"title": "The Lord of the Rings", "title":"The Lord of the Rings",
"isbn": "0-395-19395-8", "isbn":"0-395-19395-8",
"price": 22.99 "price":22.99
} }
], ],
"bicycle": { "bicycle":{
"color": "red", "color":"red",
"price": 19.95 "price":19.95
} }
} },
} "url":"mystore.com",
"owner":"baeldung"
}

View File

@ -33,7 +33,7 @@ public class JsonPathUnitTest {
@Test @Test
public void shouldMatchCountOfObjects() { public void shouldMatchCountOfObjects() {
Map<String, String> objectMap = JsonPath.read(json, "$"); Map<String, String> objectMap = JsonPath.read(json, "$");
assertEquals(1, objectMap.keySet() assertEquals(3, objectMap.keySet()
.size()); .size());
} }