1 | public class ManyToManyAssociationClassCompositeIdTest extends AbstractManyToManyAssociationClassTest {
↵ | | 1 | public class SybaseCustomSQLTest extends CustomStoredProcTestSupport {↵
|
|
2 | public ManyToManyAssociationClassCompositeIdTest(String string) {
↵ | | 2 | public SybaseCustomSQLTest(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/sybase/Mappings.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( SybaseCustomSQLTest.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 SybaseDialect )
|