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 55package org .hibernate .orm .test .dialect ;
66
77import org .hibernate .dialect .DB2iDialect ;
8- import org .hibernate .testing . RequiresDialect ;
8+ import org .hibernate .dialect . DB2zDialect ;
99import org .hibernate .testing .orm .junit .JiraKey ;
1010import org .junit .Test ;
1111
1212import static org .junit .Assert .assertNotNull ;
1313
1414/**
15- * @author Onno Goczol
15+ * @author Steve Ebersole
1616 */
1717@ 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+ }
2024
2125 @ Test
22- public void testInitUniqueDelegate () {
26+ public void testDB2iDialectInit () {
2327 final var db2iDialect = new DB2iDialect ();
24- assertNotNull (db2iDialect );
28+ assertNotNull ( db2iDialect );
2529 }
26-
2730}
You can’t perform that action at this time.
0 commit comments