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