1 | public class BidirectionalOneToManyBagSubclassCollectionEventTest extends BidirectionalOneToManyBagCollectionEventTest {↵ | | 1 | public class DataDirectOracleCustomSQLTest extends CustomStoredProcTestSupport {↵
|
| | | 2 | ↵
|
2 | public BidirectionalOneToManyBagSubclassCollectionEventTest(String string) {↵ | | 3 | public DataDirectOracleCustomSQLTest(String str) {↵
|
3 | super( string );↵ | | 4 | super(str);↵
|
4 | }↵ | | 5 | }↵
|
|
5 | public static Test suite() {↵ | | 6 | public ↵
|
6 | return new FunctionalTestClassTestSuite( BidirectionalOneToManyBagSubclassCollectionEventTest.class );↵ | | |
|
7 | }↵ | | |
|
|
8 | public String[] getMappings() {↵ | | |
|
9 | return new String[] { "event/collection/association/bidirectional/onetomany/BidirectionalOneToManyBagSubclassMapping.hbm.xml" }↵ | | 7 | String[] getMappings() {↵
|
| | | 8 | return new String[] { "sql/hand/custom/oracle/Mappings.hbm.xml", "sql/hand/custom/datadirect/oracle/StoredProcedures.hbm.xml" };↵
|
| | | 9 | }↵
|
|
| | | 10 | public static Test suite() {↵
|
10 | ;↵ | | 11 | return new FunctionalTestClassTestSuite( DataDirectOracleCustomSQLTest.class );↵
|
11 | }↵ | | 12 | }↵
|
|
12 | public ParentWithCollection createParent(String name) {↵ | | 13 | public ↵
|
13 | return new ParentWithBidirectionalOneToManySubclass( name↵ | | 14 | boolean appliesTo(Dialect dialect) {↵
|
14 | );↵ | | 15 | return ( dialect instanceof DataDirectOracle9Dialect );↵
|
15 | | | 16 |
|