forked from tabulapdf/tabula-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestDebug.java
More file actions
23 lines (16 loc) · 718 Bytes
/
TestDebug.java
File metadata and controls
23 lines (16 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package technology.tabula;
import static org.junit.Assert.*;
import java.io.File;
import java.io.IOException;
import org.junit.Test;
import technology.tabula.debug.Debug;
public class TestDebug {
private final static String PATH = "src/test/resources/technology/tabula/spanning_cells.pdf";
// @Test
// public void test() throws IOException {
// File outFile = new File(new File(System.getProperty("java.io.tmpdir")), "/rendered_page.jpg");
// Debug.renderPage(PATH, outFile.getAbsolutePath(), 0, null, true, false, false, false, false, false, false, false, false, false);
// assertTrue(outFile.exists());
// System.out.println(outFile.getAbsolutePath());
// }
}