initial commit

This commit is contained in:
Thomas Chojecki
2014-04-08 01:01:39 +02:00
commit 6e07f2e280
8 changed files with 690 additions and 0 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" });
}
}