blob: 8a572907e42ecfeb06e3fb7cc0a7de96d1efae0f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the terms of
* the Eclipse Public License v1.0, which accompanies this distribution and is available at
* http://www.eclipse.org/legal/epl-v10.html.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.db.tests.internal.platforms;
import junit.framework.Test;
import junit.framework.TestSuite;
import junit.swingui.TestRunner;
/**
* SQL Server 2005 Driver Test
*/
public class MySQL41Tests extends DTPPlatformTests {
public static void main( String[] args) {
TestRunner.main( new String[] { "-c", MySQL41Tests.class.getName()});
}
public static Test suite() {
return new TestSuite( MySQL41Tests.class);
}
public MySQL41Tests( String name) {
super( name);
}
protected String databaseVendor() {
return "MySql";
}
protected String databaseVersion() {
return "4.1";
}
protected String driverClass() {
return "com.mysql.jdbc.Driver";
}
protected String driverDefinitionId() {
return "DriverDefn.MySQL JDBC Driver";
}
protected String driverDefinitionType() {
return "org.eclipse.datatools.enablement.mysql.4_1.driverTemplate";
}
protected String driverName() {
return "MySQL JDBC Driver";
}
protected String getConfigName() {
return "mysql41.properties";
}
}