@SmallTest
  @MediumTest
  @LargeTest
  public void testCanGetRandomAccess() throws JSONException {
    JSONArray jsonArray = new JSONArray();
    jsonArray.put("Seattle");
    jsonArray.put("Menlo Park");

    GraphObjectList<String> collection = GraphObject.Factory.createList(jsonArray, String.class);

    assertEquals("Menlo Park", collection.get(1));
  }