1 package liquibase.dbtest.h2;
2
3 import liquibase.dbtest.AbstractIntegrationTest;
4 import org.junit.Test;
5
6 import java.util.Locale;
7
8 public class H2IntegrationTest extends AbstractIntegrationTest {
9
10 public H2IntegrationTest() throws Exception {
11 super("h2", "jdbc:h2:mem:liquibase");
12 }
13
14 @Override
15 public void testRunChangeLog() throws Exception {
16 super.testRunChangeLog(); //To change body of overridden methods use File | Settings | File Templates.
17 }
18
19 // @Test
20 // public void testUpdateWithTurkishLocale() throws Exception {
21 // Locale originalDefault = Locale.getDefault();
22 //
23 // Locale.setDefault(new Locale("tr","TR"));
24 // testRunChangeLog();
25 // Locale.setDefault(originalDefault);
26 // }
27
28 }