use of org.hibernate.console.preferences.StandAloneConsoleConfigurationPreferences in project jbosstools-hibernate by jbosstools.
the class HSearchConsoleConfigurationPreferencesTest method testGetHSearchVersion.
@Test
public void testGetHSearchVersion() {
ConsoleConfigurationPreferences prefs = new StandAloneConsoleConfigurationPreferences("my-console-config", "4.3") {
};
ConsoleConfiguration consoleConfiguration = new ConsoleConfiguration(prefs);
KnownConfigurations.getInstance().addConfiguration(consoleConfiguration, false);
assertEquals(HSearchConsoleConfigurationPreferences.getHSearchVersion("my-console-config"), "5.3");
}
Aggregations