Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa/tests/org.eclipse.jpt.db.tests/src/org/eclipse/jpt/db/tests/internal/platforms/Oracle9iTests.java')
-rw-r--r--jpa/tests/org.eclipse.jpt.db.tests/src/org/eclipse/jpt/db/tests/internal/platforms/Oracle9iTests.java60
1 files changed, 0 insertions, 60 deletions
diff --git a/jpa/tests/org.eclipse.jpt.db.tests/src/org/eclipse/jpt/db/tests/internal/platforms/Oracle9iTests.java b/jpa/tests/org.eclipse.jpt.db.tests/src/org/eclipse/jpt/db/tests/internal/platforms/Oracle9iTests.java
deleted file mode 100644
index 3923081244..0000000000
--- a/jpa/tests/org.eclipse.jpt.db.tests/src/org/eclipse/jpt/db/tests/internal/platforms/Oracle9iTests.java
+++ /dev/null
@@ -1,60 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 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;
-
-/**
- * Oracle 9i Thin Driver Test
- */
-public class Oracle9iTests extends DTPPlatformTests {
-
- public static void main( String[] args) {
- TestRunner.main( new String[] { "-c", Oracle9iTests.class.getName()});
- }
-
- public static Test suite() {
- return new TestSuite( Oracle9iTests.class);
- }
-
- public Oracle9iTests( String name) {
- super( name);
- }
-
- protected String databaseVendor() {
- return "Oracle";
- }
-
- protected String databaseVersion() {
- return "9";
- }
-
- protected String driverClass() {
- return "oracle.jdbc.OracleDriver";
- }
-
- protected String driverDefinitionId() {
- return "DriverDefn.Oracle Thin Driver";
- }
-
- protected String driverDefinitionType() {
- return "org.eclipse.datatools.enablement.oracle.9.driverTemplate";
- }
-
- protected String driverName() {
- return "Oracle 9i Thin Driver";
- }
-
- protected String getConfigName() {
- return "oracle9i.properties";
- }
-}

Back to the top