assertEquals(4, root.getList("CUSTOMER").size());
}
public void testReadCustomersStaticTypes() throws Exception {
ReadCustomersStaticTypesCommand cmd = new ReadCustomersStaticTypesCommand();
cmd.setConnection(getConnection());
cmd.setParameterValue("LASTNAME", "Williams");
DataGraphRoot root = (DataGraphRoot) cmd.executeQuery();
List customers = root.getCustomers();
assertEquals(4, customers.size());
Customer cust1 = (Customer) customers.get(0);