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