Skip to content

Commit 5d08610

Browse files
committed
Ignore memory hungry hyphen tests (layout) to be fixed in DEVSIX-2036
1 parent 1d17ae9 commit 5d08610

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

layout/src/test/java/com/itextpdf/layout/HyphenateResultTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,19 +47,22 @@ This file is part of the iText (R) project.
4747
import com.itextpdf.test.ExtendedITextTest;
4848
import com.itextpdf.test.annotations.type.IntegrationTest;
4949
import org.junit.Assert;
50+
import org.junit.Ignore;
5051
import org.junit.Test;
5152
import org.junit.experimental.categories.Category;
5253

5354
@Category(IntegrationTest.class)
5455
public class HyphenateResultTest extends ExtendedITextTest {
5556

5657
@Test
58+
@Ignore
5759
public void ukraineHyphenTest() {
5860
//здравствуйте
5961
testHyphenateResult("uk", "\u0437\u0434\u0440\u0430\u0432\u0441\u0442\u0432\u0443\u0439", new int[]{5});
6062
}
6163

6264
@Test
65+
@Ignore
6366
public void ukraineNoneHyphenTest() {
6467
//день
6568
testHyphenateResult("uk", "\u0434\u0435\u043D\u044C", null);

layout/src/test/java/com/itextpdf/layout/HyphenateTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ This file is part of the iText (R) project.
4949
import com.itextpdf.test.ExtendedITextTest;
5050
import com.itextpdf.test.annotations.type.IntegrationTest;
5151
import org.junit.Assert;
52+
import org.junit.Ignore;
5253
import org.junit.Test;
5354
import org.junit.experimental.categories.Category;
5455

@@ -135,6 +136,7 @@ public class HyphenateTest extends ExtendedITextTest {
135136
private List<String> errors = new ArrayList<>();
136137

137138
@Test
139+
@Ignore
138140
public void runTest() {
139141
for (TestParams param : params) {
140142
tryHyphenate(param.lang, param.testWorld, param.shouldPass);

0 commit comments

Comments
 (0)