DataObject root = cmd.executeQuery();
assertEquals(5, root.getList("CUSTOMER").size());
}
public void testReadSomeCustomers() throws Exception {
ReadCustomersByLastnameCommand cmd = new ReadCustomersByLastnameCommand();
cmd.setConnection(getConnection());
cmd.setParameterValue("LASTNAME", "Williams");
DataObject root = cmd.executeQuery();
assertEquals(4, root.getList("CUSTOMER").size());
}