Package dbfit.api

Examples of dbfit.api.DBEnvironment


public class NetezzaDbEnvironmentFactoryTest {

    @Test
    public void newDbEnvironmentTest() throws Exception {
        DBEnvironment env = dbfit.api.DbEnvironmentFactory.newEnvironmentInstance("Netezza");
        assertNotNull(env);
    }
View Full Code Here


public class SqlServerDbEnvironmentFactoryTest {

    @Ignore("SqlServer driver not available during build")
    @Test
    public void newDbEnvironmentTest() throws Exception {
        DBEnvironment env = dbfit.api.DbEnvironmentFactory.newEnvironmentInstance("SqlServer");
        assertNotNull(env);
    }
View Full Code Here

public class MySqlDbEnvironmentFactoryTest {

    @Test
    public void newDbEnvironmentTest() throws Exception {
        DBEnvironment env = dbfit.api.DbEnvironmentFactory.newEnvironmentInstance("MySql");
        assertNotNull(env);
    }
View Full Code Here

public class OracleDbEnvironmentFactoryTest {

    @Test
    public void newDbEnvironmentTest() throws Exception {
        DBEnvironment env = dbfit.api.DbEnvironmentFactory.newEnvironmentInstance("Oracle");
        assertNotNull(env);
    }
View Full Code Here

        super.doTable(table);
    }

    public void setDatabaseEnvironment(String requestedEnv) {
        try {
            DBEnvironment oe =
                DbEnvironmentFactory.newEnvironmentInstance(requestedEnv);
            DbEnvironmentFactory.setDefaultEnvironment(oe);
        } catch (Exception e) {
            throw new Error(e);
        }
View Full Code Here

public class PostgresDbEnvironmentFactoryTest {

    @Test
    public void newDbEnvironmentTest() throws Exception {
        DBEnvironment env = dbfit.api.DbEnvironmentFactory.newEnvironmentInstance("Postgres");
        assertNotNull(env);
    }
View Full Code Here

public class DB2DbEnvironmentFactoryTest {

    @Test
    public void newDbEnvironmentTest() throws Exception {
        DBEnvironment env = dbfit.api.DbEnvironmentFactory.newEnvironmentInstance("DB2");
        assertNotNull(env);
    }
View Full Code Here

public class DB2iDbEnvironmentFactoryTest {

    @Ignore("DB2i driver not available during build")
    @Test
    public void newDbEnvironmentTest() throws Exception {
        DBEnvironment env = dbfit.api.DbEnvironmentFactory.newEnvironmentInstance("DB2i");
        assertNotNull(env);
    }
View Full Code Here

public class HSQLDBEnvironmentFactoryTest {

    @Ignore("HSQLDB driver not available during build")
    @Test
    public void newDbEnvironmentTest() throws Exception {
        DBEnvironment env = dbfit.api.DbEnvironmentFactory.newEnvironmentInstance("HSQLDB");
        assertNotNull(env);
    }
View Full Code Here

public class DerbyDbEnvironmentFactoryTest {

    @Test
    public void newDbEnvironmentTest() throws Exception {
        DBEnvironment env = dbfit.api.DbEnvironmentFactory.newEnvironmentInstance("Derby");
        assertNotNull(env);
    }
View Full Code Here

TOP

Related Classes of dbfit.api.DBEnvironment

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.