Skip to content

Commit a16dc09

Browse files
committed
Align disabled tests with main branch
1 parent 5991bb7 commit a16dc09

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

tooling/hibernate-reveng/src/test/java/org/hibernate/tool/reveng/hbm2x/Hbm2DaoTest/TestCase.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
import org.hibernate.tool.reveng.test.utils.JUnitUtil;
1515
import org.hibernate.tool.reveng.test.utils.JavaUtil;
1616
import org.junit.jupiter.api.BeforeEach;
17+
import org.junit.jupiter.api.Disabled;
1718
import org.junit.jupiter.api.Test;
1819
import org.junit.jupiter.api.io.TempDir;
1920

@@ -60,6 +61,7 @@ public void setUp() throws Exception {
6061
}
6162

6263
@Test
64+
@Disabled
6365
public void testFileExistence() {
6466
JUnitUtil.assertIsNonEmptyFile(new File(
6567
srcDir, "org/hibernate/tool/hbm2x/ArticleHome.java"));
@@ -68,6 +70,7 @@ public void testFileExistence() {
6870
}
6971

7072
@Test
73+
@Disabled
7174
public void testCompilable() throws IOException {
7275
File compiled = new File(outputFolder, "compiled");
7376
assertTrue(compiled.mkdir());
@@ -81,6 +84,7 @@ public void testCompilable() throws IOException {
8184
}
8285

8386
@Test
87+
@Disabled
8488
public void testNoVelocityLeftOvers() {
8589
assertNull(FileUtil
8690
.findFirstString(
@@ -97,6 +101,7 @@ public void testNoVelocityLeftOvers() {
97101
}
98102

99103
@Test
104+
@Disabled
100105
public void testNamedQueries() {
101106
assertTrue(FileUtil
102107
.findFirstString(

tooling/hibernate-reveng/src/test/java/org/hibernate/tool/reveng/hbm2x/Hbm2HibernateDAOTest/TestCase.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
import org.hibernate.tool.reveng.test.utils.JUnitUtil;
1717
import org.hibernate.tool.reveng.test.utils.JavaUtil;
1818
import org.junit.jupiter.api.BeforeEach;
19+
import org.junit.jupiter.api.Disabled;
1920
import org.junit.jupiter.api.Test;
2021
import org.junit.jupiter.api.io.TempDir;
2122

@@ -64,6 +65,7 @@ public void setUp() throws Exception {
6465
}
6566

6667
@Test
68+
@Disabled
6769
public void testFileExistence() {
6870
JUnitUtil.assertIsNonEmptyFile(new File(
6971
srcDir,
@@ -74,6 +76,7 @@ public void testFileExistence() {
7476
}
7577

7678
@Test
79+
@Disabled
7780
public void testCompilable() throws IOException {
7881
File compiled = new File(outputFolder, "compiled");
7982
assertTrue(compiled.mkdir());
@@ -100,6 +103,7 @@ public void testCompilable() throws IOException {
100103
}
101104

102105
@Test
106+
@Disabled
103107
public void testNoVelocityLeftOvers() {
104108
assertNull(FileUtil.findFirstString(
105109
"$",

0 commit comments

Comments
 (0)