forked from hibernate/hibernate-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HHH-17295 Change which constructor is looked-up in DialectContext tes…
…t utils
- Loading branch information
1 parent
4bf9bfa
commit 30241bb
Showing
2 changed files
with
23 additions
and
4 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
hibernate-core/src/test/java/org/hibernate/dialect/DialectContextTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* Hibernate, Relational Persistence for Idiomatic Java | ||
* | ||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later. | ||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. | ||
*/ | ||
package org.hibernate.dialect; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
import org.hibernate.testing.orm.junit.DialectContext; | ||
import org.junit.Test; | ||
|
||
public class DialectContextTest { | ||
|
||
@Test | ||
public void smoke() { | ||
Dialect current = DialectContext.getDialect(); | ||
assertThat( current ).isNotNull(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters