File tree Expand file tree Collapse file tree 2 files changed +3
-24
lines changed
hibernate-reactive-core/src/test/java/org/hibernate/reactive Expand file tree Collapse file tree 2 files changed +3
-24
lines changed Original file line number Diff line number Diff line change 16
16
import javax .persistence .Table ;
17
17
18
18
import org .hibernate .cfg .Configuration ;
19
- import org .hibernate .reactive .testing .DatabaseSelectionRule ;
20
19
21
20
import org .junit .After ;
22
21
import org .junit .Before ;
23
- import org .junit .Rule ;
24
22
import org .junit .Test ;
25
23
26
24
import io .smallrye .mutiny .Uni ;
27
25
import io .vertx .ext .unit .TestContext ;
28
26
29
27
import static org .assertj .core .api .Assertions .assertThat ;
30
- import static org .hibernate .reactive .containers .DatabaseConfiguration .DBType .DB2 ;
31
- import static org .hibernate .reactive .testing .DatabaseSelectionRule .skipTestsFor ;
32
28
33
29
/**
34
30
* Tests @{@link ElementCollection} on a {@link List} of basic types.
47
43
*/
48
44
public class EagerElementCollectionForBasicTypeListTest extends BaseReactiveTest {
49
45
50
- @ Rule
51
- public DatabaseSelectionRule db2WithVertx4BugRule = skipTestsFor ( DB2 );
52
-
53
46
private Person thePerson ;
54
47
55
48
protected Configuration constructConfiguration () {
Original file line number Diff line number Diff line change 5
5
*/
6
6
package org .hibernate .reactive ;
7
7
8
- import java .util .Objects ;
9
- import javax .persistence .Entity ;
10
- import javax .persistence .FetchType ;
11
- import javax .persistence .Id ;
12
- import javax .persistence .ManyToOne ;
13
- import javax .persistence .OneToOne ;
14
- import javax .persistence .Table ;
15
-
8
+ import io .vertx .ext .unit .TestContext ;
16
9
import org .hibernate .cfg .Configuration ;
17
- import org .hibernate .reactive .testing .DatabaseSelectionRule ;
18
10
19
11
import org .junit .After ;
20
- import org .junit .Rule ;
21
12
import org .junit .Test ;
22
13
23
- import io .vertx .ext .unit .TestContext ;
24
-
25
- import static org .hibernate .reactive .containers .DatabaseConfiguration .DBType .DB2 ;
26
- import static org .hibernate .reactive .testing .DatabaseSelectionRule .skipTestsFor ;
14
+ import javax .persistence .*;
15
+ import java .util .Objects ;
27
16
28
17
public class EagerOneToOneAssociationTest extends BaseReactiveTest {
29
18
30
- @ Rule
31
- public DatabaseSelectionRule db2WithVertx4BugRule = skipTestsFor ( DB2 );
32
-
33
19
@ Override
34
20
protected Configuration constructConfiguration () {
35
21
Configuration configuration = super .constructConfiguration ();
You can’t perform that action at this time.
0 commit comments