assert page.size() > 0 : "There is some data in here";
System.out.println("paginator 1" + paginator);
petClinicLeadCrud.clear();
DataModel model = petClinicLeadCrud.getModel();
assert model != null : "The model is not null";
List<Row> list = (List<Row>) model.getWrappedData();
assert list.size() > 0 : "There is some data in here";
Row row = list.get(0);
PetClinicInquiry pci = (PetClinicInquiry) row.get("inquiry");
assert pci.getAnotherProp().startsWith("testInquiry") : "Data seems correct";