*/
public class ArrayRootSelectorTest {
protected NodeSelector<JsonNode> build(final String json) throws JSONException {
ArrayNodeImpl node = new ArrayNodeImpl(new JSONArray(json));
return node.buildNodeSelector();
}
@Test
public void testStar() throws Exception {
NodeSelector<JsonNode> selector = build("[ { \"a\": \"1\" }, { \"b\": \"2\" }, { \"b\": \"3\" }]");