1 | public class BidirectionalOneToManyBagSubclassCollectionEventTest extends BidirectionalOneToManyBagCollectionEventTest {↵ | | 1 | public class ManyToManyAssociationClassCompositeIdTest extends AbstractManyToManyAssociationClassTest {↵
|
| | | 2 |
↵
|
2 | public BidirectionalOneToManyBagSubclassCollectionEventTest(String string) {↵ | | 3 | public ManyToManyAssociationClassCompositeIdTest(String string) {
↵
|
3 | super( string );↵ | | 4 | super( string );
↵
|
4 | }↵ | | 5 | }↵
|
|
| | | 6 |
↵
|
5 | public static Test suite() {↵ | | 7 | public String[] getMappings() {
↵
|
6 | return new FunctionalTestClassTestSuite( BidirectionalOneToManyBagSubclassCollectionEventTest.class );↵ | | 8 | return new ↵
|
7 | }↵ | | |
|
|
8 | public String[] getMappings↵ | | 9 | String[] { "manytomanyassociationclass/compositeid/Mappings.hbm.xml" };↵
|
| | | 10 | }↵
|
|
9 | () {↵ | | 11 | public static Test suite() {
↵
|
10 | return new String[] { "event/collection/association/bidirectional/onetomany/BidirectionalOneToManyBagSubclassMapping.hbm.xml" };↵ | | 12 | return new ↵
|
11 | }↵ | | |
|
|
12 | public ParentWithCollection createParent(↵ | | 13 | FunctionalTestClassTestSuite( ManyToManyAssociationClassCompositeIdTest.class );↵
|
| | | 14 | }↵
|
|
13 | String name) {↵ | | 15 | public Membership createMembership( String name ) {
↵
|
14 | return new ParentWithBidirectionalOneToManySubclass( name );↵ | | 16 | return new MembershipWithCompositeId( name );
↵
|
15 | | | 17 |
|