Author: dgeraskov
Date: 2008-11-11 06:06:19 -0500 (Tue, 11 Nov 2008)
New Revision: 11660
Modified:
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/test/ConsoleConfigurationTest.java
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/test/KnownConfigurationsTest.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-2740
dialect option added.
Modified:
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/test/ConsoleConfigurationTest.java
===================================================================
---
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/test/ConsoleConfigurationTest.java 2008-11-11
11:06:14 UTC (rev 11659)
+++
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/test/ConsoleConfigurationTest.java 2008-11-11
11:06:19 UTC (rev 11660)
@@ -111,6 +111,14 @@
return null;
}
+ /* (non-Javadoc)
+ * @see
org.hibernate.console.preferences.ConsoleConfigurationPreferences#getDialectName()
+ */
+ public String getDialectName() {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
}
Modified:
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/test/KnownConfigurationsTest.java
===================================================================
---
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/test/KnownConfigurationsTest.java 2008-11-11
11:06:14 UTC (rev 11659)
+++
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/src/org/hibernate/eclipse/console/test/KnownConfigurationsTest.java 2008-11-11
11:06:19 UTC (rev 11660)
@@ -134,6 +134,11 @@
return null;
}
+ public String getDialectName() {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
};
ConsoleConfigurationPreferences preferences2 = new ConsoleConfigurationPreferences() {
@@ -213,6 +218,11 @@
return null;
}
+ public String getDialectName() {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
};
ConsoleConfiguration configuration = new ConsoleConfiguration(preferences);