import src.TurmaMigration;
import junit.framework.TestCase;
public class TurmaMigrationTest extends TestCase{
public void testGetResultSet() throws Exception {
Migrator migration = new TurmaMigration(Context.getSourceConnection(),Context.getDestinationConnection());
ResultSet rs = migration.getResultSet();
rs.next();
assertEquals(9,rs.getMetaData().getColumnCount());
}