001 /* 002 * Copyright (C) 2005 Whitestein Technologies AG, Poststrasse 22, CH-6300 Zug, Switzerland. 003 * All rights reserved. The use of this file in source or binary form requires a written license from Whitestein Technologies AG. 004 * 005 */ 006 package liquibase.dbtest.maxdb; 007 008 import liquibase.dbtest.AbstractIntegrationTest; 009 010 /** 011 * create tablespace liquibase2 datafile 'C:\ORACLEXE\ORADATA\XE\LIQUIBASE2.DBF' SIZE 5M autoextend on next 5M 012 */ 013 public class MaxDbIntegrationTest extends AbstractIntegrationTest { 014 015 public MaxDbIntegrationTest() throws Exception { 016 super("maxdb", "jdbc:sapdb://"+ getDatabaseServerHostname("MaxDB") +"/liquibas"); 017 } 018 019 }