You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.9 KiB
45 lines
1.9 KiB
11 years ago
|
package com.jayway.jsonpath.old;
|
||
12 years ago
|
|
||
|
public class MultiAttributeTest {
|
||
|
|
||
|
public final static String DOCUMENT =
|
||
|
"{ \"store\": {\n" +
|
||
|
" \"book\": [ \n" +
|
||
|
" { \"category\": \"reference\",\n" +
|
||
|
" \"author\": \"Nigel Rees\",\n" +
|
||
|
" \"title\": \"Sayings of the Century\",\n" +
|
||
|
" \"display-price\": 8.95\n" +
|
||
|
" },\n" +
|
||
|
" { \"category\": \"fiction\",\n" +
|
||
|
" \"author\": \"Evelyn Waugh\",\n" +
|
||
|
" \"title\": \"Sword of Honour\",\n" +
|
||
|
" \"display-price\": 12.99\n" +
|
||
|
" },\n" +
|
||
|
" { \"category\": \"fiction\",\n" +
|
||
|
" \"author\": \"Herman Melville\",\n" +
|
||
|
" \"title\": \"Moby Dick\",\n" +
|
||
|
" \"isbn\": \"0-553-21311-3\",\n" +
|
||
|
" \"display-price\": 8.99\n" +
|
||
|
" },\n" +
|
||
|
" { \"category\": \"fiction\",\n" +
|
||
|
" \"author\": \"J. R. R. Tolkien\",\n" +
|
||
|
" \"title\": \"The Lord of the Rings\",\n" +
|
||
|
" \"isbn\": \"0-395-19395-8\",\n" +
|
||
|
" \"display-price\": 22.99\n" +
|
||
|
" }\n" +
|
||
|
" ],\n" +
|
||
|
" \"bicycle\": {\n" +
|
||
|
" \"color\": \"red\",\n" +
|
||
|
" \"display-price\": 19.95,\n" +
|
||
|
" \"foo:bar\": \"fooBar\",\n" +
|
||
|
" \"dot.notation\": \"new\",\n" +
|
||
|
" \"dash-notation\": \"dashes\"\n" +
|
||
|
" }\n" +
|
||
|
" }\n" +
|
||
|
"}";
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|