We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26a89c2 commit 41d8b3aCopy full SHA for 41d8b3a
hibernate-core/src/test/java/org/hibernate/orm/test/dialect/function/HANAFunctionsTest.java
@@ -16,6 +16,7 @@
16
import org.hibernate.testing.orm.junit.JiraKey;
17
import org.hibernate.testing.orm.junit.SessionFactory;
18
import org.hibernate.testing.orm.junit.SessionFactoryScope;
19
+import org.junit.jupiter.api.AfterEach;
20
import org.junit.jupiter.api.BeforeEach;
21
import org.junit.jupiter.api.Test;
22
@@ -34,6 +35,11 @@ public void setup(SessionFactoryScope scope) {
34
35
} );
36
}
37
38
+ @AfterEach
39
+ public void cleanupData(SessionFactoryScope scope) {
40
+ scope.dropData();
41
+ }
42
+
43
@Test
44
@JiraKey(value = "HHH-12546")
45
public void testLocateFunction(SessionFactoryScope scope) {
0 commit comments