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