PersonBean is a sample bean for use with the test cases.
PersonBean
86878889909192939495969798
} protected List<Object> getData() { List<Object> list = new ArrayList<Object>(); for (int x = 0; x < 10; x++) { PersonBean bean = new PersonBean(); bean.setId(x); bean.setName("Rob Harrop"); bean.setStreet("foo"); list.add(bean); } return list; }