Reorganize project

- modularized
- change pdfbox version to latest 1.8.x relase, so it match now the
mustang sample
This commit is contained in:
Thomas Chojecki
2015-02-21 18:33:03 +01:00
parent 1257af363a
commit 5b4469012c
9 changed files with 34 additions and 64 deletions

View File

@@ -0,0 +1,30 @@
package pdfa3;
import org.junit.Test;
import pdfbox.PDFA3File;
import pdfbox.PDFA3FileAttachment;
import pdfbox.PDFAFile;
public class TestPDFA3
{
@Test
public void testPDFA3File()
{
PDFA3File.main(new String[] { "PDFA3File.pdf", "Messsage" });
}
@Test
public void testPDFA3FileAttachment()
{
PDFA3FileAttachment.main(new String[] { "PDFA3FileAttachment.pdf", "Messsage" });
}
@Test
public void testPDFAFile()
{
PDFAFile.main(new String[] { "PDFAFile.pdf", "Messsage" });
}
}