File tree Expand file tree Collapse file tree 2 files changed +10
-36
lines changed
hibernate-core/src/test/java/org/hibernate/orm/test/dialect Expand file tree Collapse file tree 2 files changed +10
-36
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 5
5
package org .hibernate .orm .test .dialect ;
6
6
7
7
import org .hibernate .dialect .DB2iDialect ;
8
- import org .hibernate .testing . RequiresDialect ;
8
+ import org .hibernate .dialect . DB2zDialect ;
9
9
import org .hibernate .testing .orm .junit .JiraKey ;
10
10
import org .junit .Test ;
11
11
12
12
import static org .junit .Assert .assertNotNull ;
13
13
14
14
/**
15
- * @author Onno Goczol
15
+ * @author Steve Ebersole
16
16
*/
17
17
@ JiraKey (value = "HHH-15046" )
18
- @ RequiresDialect (DB2iDialect .class )
19
- public class DB2iDialectInitTestCase {
18
+ public class Db2VariantDialectInitTests {
19
+ @ Test
20
+ public void testDB2zDialectInit () {
21
+ final var db2zDialect = new DB2zDialect ();
22
+ assertNotNull ( db2zDialect );
23
+ }
20
24
21
25
@ Test
22
- public void testInitUniqueDelegate () {
26
+ public void testDB2iDialectInit () {
23
27
final var db2iDialect = new DB2iDialect ();
24
- assertNotNull (db2iDialect );
28
+ assertNotNull ( db2iDialect );
25
29
}
26
-
27
30
}
You can’t perform that action at this time.
0 commit comments