Package src

Examples of src.UsuarioMigration


import src.UsuarioMigration;

public class UsuarioMigrationTest extends TestCase {

  public void testGetResultSet() throws Exception {
    Migrator migration = new UsuarioMigration(
        Context.getSourceConnection(), Context
            .getDestinationConnection());
    ResultSet rs = migration.getResultSet();

    rs.next();
    assertEquals(30, rs.getMetaData().getColumnCount());
  }
View Full Code Here


    rs.next();
    assertEquals(30, rs.getMetaData().getColumnCount());
  }

  public void testExecute() throws Exception {
    Migrator migration = new UsuarioMigration(
        Context.getSourceConnection(), Context
            .getDestinationConnection());
    ResultSet rs = migration.getResultSet();
    rs.next();

    migration.execute(rs);

    Statement stm = (Statement) Context.getDestinationConnection()
        .createStatement();
    ResultSet rs2 = (ResultSet) stm
        .executeQuery("SELECT id, nome FROM USUARIO WHERE id = "
View Full Code Here

TOP

Related Classes of src.UsuarioMigration

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.