protected void tearDown() throws Exception {
super.tearDown();
}
public void testReadCustomers() throws Exception {
ReadCustomersCommand cmd = new ReadCustomersCommand();
cmd.setConnection(getConnection());
DataObject root = cmd.executeQuery();
assertEquals(5, root.getList("CUSTOMER").size());
}