File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
layout/src/test/java/com/itextpdf/layout/renderer Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 9
9
import com .itextpdf .test .ExtendedITextTest ;
10
10
import com .itextpdf .test .annotations .type .IntegrationTest ;
11
11
import org .junit .Assert ;
12
+ import org .junit .BeforeClass ;
12
13
import org .junit .Test ;
13
14
import org .junit .experimental .categories .Category ;
14
15
15
- import java .io .File ;
16
16
import java .io .IOException ;
17
17
18
18
/**
@@ -23,11 +23,14 @@ public class EmptyNestedTableTest extends ExtendedITextTest {
23
23
public static final String sourceFolder = "./src/test/resources/com/itextpdf/layout/EmptyNestedTableTest/" ;
24
24
public static final String destinationFolder = "./target/test/com/itextpdf/layout/EmptyNestedTableTest/" ;
25
25
26
+ @ BeforeClass
27
+ public static void beforeClass () {
28
+ createDestinationFolder (destinationFolder );
29
+ }
30
+
26
31
@ Test
27
32
public void buildEmptyTable () throws IOException , InterruptedException {
28
33
29
- createDestinationFolder (destinationFolder );
30
-
31
34
String outFileName = destinationFolder + "emptyNestedTableTest.pdf" ;
32
35
String cmpFileName = sourceFolder + "cmp_emptyNestedTableTest.pdf" ;
33
36
You can’t perform that action at this time.
0 commit comments