1 | public class DataDirectOracleCustomSQLTest extends CustomStoredProcTestSupport {↵ | | 1 | public class DB2CustomSQLTest extends CustomStoredProcTestSupport {↵
|
2 | ↵ | | 2 | ↵
|
3 | public DataDirectOracleCustomSQLTest(String str) {↵ | | 3 | public DB2CustomSQLTest(String str) {↵
|
4 | super(str);↵ | | 4 | super(str);↵
|
5 | }↵ | | 5 | }↵
|
|
6 | public String[] getMappings() {↵ | | 6 | public String[] getMappings() {↵
|
7 | return new String[] { "sql/hand/custom/oracle/Mappings.hbm.xml", "sql/hand/custom/datadirect/oracle/StoredProcedures.hbm.xml" };↵ | | 7 | return new String[] { "sql/hand/custom/db2/Mappings.hbm.xml" };↵
|
8 | }↵ | | 8 | }↵
|
|
9 | public static Test suite() {↵ | | 9 | public static Test suite() {↵
|
10 | return new FunctionalTestClassTestSuite( DataDirectOracleCustomSQLTest.class );↵ | | 10 | return new FunctionalTestClassTestSuite( DB2CustomSQLTest.class );↵
|
11 | }↵ | | 11 | }↵
|
|
12 | public boolean appliesTo(Dialect dialect) {↵ | | 12 | public boolean appliesTo(Dialect dialect) {↵
|
13 | return ( dialect instanceof DataDirectOracle9Dialect ) | | 13 | return ( dialect instanceof DB2Dialect)
|