1 | public class BidirectionalOneToManyBagSubclassCollectionEventTest extends BidirectionalOneToManyBagCollectionEventTest {↵ | | 1 | public class ↵
|
|
2 | public BidirectionalOneToManyBagSubclassCollectionEvent↵ | | 2 | TriggerGeneratedValuesWithCachingTest extends AbstractGeneratedPropertyTest {↵
|
|
3 | Test(String string) {↵ | | 3 | public TriggerGeneratedValuesWithCachingTest(String x) {↵
|
4 | super( string );↵ | | 4 | super( x );↵
|
5 | }↵ | | 5 | }↵
|
|
6 | public static Test suite() {↵ | | 6 | public ↵
|
7 | return new FunctionalTestClassTestSuite( BidirectionalOneToManyBagSubclassCollectionEventTest.class )↵ | | 7 | final String[] getMappings() {↵
|
8 | ;↵ | | 8 | return new String[] { "generated/GeneratedPropertyEntity.hbm.xml" };↵
|
9 | }↵ | | 9 | }↵
|
|
10 | public String[] getMappings() {↵ | | 10 | public ↵
|
11 | return new String[] { "event/collection/association/bidirectional/onetomany/BidirectionalOneToManyBagSubclassMapping.hbm.xml" };↵ | | |
|
12 | }↵ | | |
|
|
13 | public ParentWithCollection createParent(String name) {↵ | | |
|
14 | return new ParentWithBidirectionalOneToManySubclass( name↵ | | 11 | boolean appliesTo(Dialect dialect) {↵
|
| | | 12 | // currently have only defined triggers for oracle...↵
|
| | | 13 | // TODO : add more triggers for dialects which allow mods in triggers...↵
|
| | | 14 | return ( dialect instanceof Oracle9iDialect );↵
|
| | | 15 | }↵
|
|
| | | 16 | public static Test suite() {↵
|
15 | );↵ | | 17 | return new FunctionalTestClassTestSuite( TriggerGeneratedValuesWithCachingTest.class );↵
|
16 | | | 18 |
|