Package dbfit.environment

Source Code of dbfit.environment.DB2iDbEnvironmentFactoryTest

package dbfit.environment;

import dbfit.api.DBEnvironment;
import org.junit.Test;
import org.junit.Ignore;
import static org.junit.Assert.*;

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

}
TOP

Related Classes of dbfit.environment.DB2iDbEnvironmentFactoryTest

TOP
Copyright © 2018 www.massapi.com. 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.