1 | public class DB2CustomSQLTest extends CustomStoredProcTestSupport {↵ | | 1 | public class MySQLCustomSQLTest extends CustomStoredProcTestSupport {↵
|
2 | ↵ | | |
|
3 | public DB2CustomSQLTest(String str) {↵ | | 2 | public MySQLCustomSQLTest(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/db2/Mappings.hbm.xml" };↵ | | 6 | return new String[] { "sql/hand/custom/mysql/Mappings.hbm.xml" };↵
|
8 | }↵ | | 7 | }↵
|
|
9 | public static Test suite() {↵ | | 8 | public static Test suite() {↵
|
10 | return new FunctionalTestClassTestSuite( DB2CustomSQLTest.class );↵ | | 9 | return new FunctionalTestClassTestSuite( MySQLCustomSQLTest.class );↵
|
11 | }↵ | | 10 | }↵
|
|
12 | public boolean appliesTo(Dialect dialect) {↵ | | 11 | public boolean appliesTo(Dialect dialect) {↵
|
13 | return ( dialect instanceof DB2Dialect);↵ | | 12 | return ( dialect instanceof MySQLDialect );↵
|
14 | | | 13 |
|