View Javadoc

1   /*
2    * Copyright (C) 2005 Whitestein Technologies AG, Poststrasse 22, CH-6300 Zug, Switzerland.
3    * All rights reserved. The use of this file in source or binary form requires a written license from Whitestein Technologies AG.
4    *
5    */
6   package liquibase.dbtest.maxdb;
7   
8   import liquibase.dbtest.AbstractIntegrationTest;
9   
10  /**
11   * create tablespace liquibase2 datafile 'C:\ORACLEXE\ORADATA\XE\LIQUIBASE2.DBF' SIZE 5M autoextend on next 5M
12   */
13  public class MaxDbIntegrationTest extends AbstractIntegrationTest {
14  
15    public MaxDbIntegrationTest() throws Exception {
16        super("maxdb", "jdbc:sapdb://"+ getDatabaseServerHostname("MaxDB") +"/liquibas");
17    }
18  
19  }