Package org.apache.tuscany.das.rdb.test.commands

Examples of org.apache.tuscany.das.rdb.test.commands.ReadCustomersByLastnameCommand


    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());

  }
View Full Code Here


        DataObject root = cmd.executeQuery();
        assertEquals(5, root.getList("CUSTOMER").size());
    }

    public void testReadSomeCustomers() throws Exception {
        ReadCustomersByLastnameCommand cmd = new ReadCustomersByLastnameCommand();
        cmd.setConnection(getConnection());
        cmd.setParameter(1, "Williams");

        DataObject root = cmd.executeQuery();
        assertEquals(4, root.getList("CUSTOMER").size());

    }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.das.rdb.test.commands.ReadCustomersByLastnameCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.