Package org.apache.padaf.preflight.util

Examples of org.apache.padaf.preflight.util.DocumentHandlerStub


public class TestAbstractHelper {

  @Test(expected = ValidationException.class)
  public void testAbstractHelperCheckMethod() throws ValidationException {
    AcroFormValidationHelper afvh = new AcroFormValidationHelper(PdfAValidatorFactory.getStandardPDFA1BConfiguration());
    afvh.validate(new DocumentHandlerStub(null));
  }
View Full Code Here


  @Test(expected = ValidationException.class)
  public void noCatalogEntry() throws Exception {
    PDDocument pdoc = new NOCatalogDocument();
    BookmarkValidationHelper helper = new BookmarkValidationHelper(PdfAValidatorFactory.getStandardPDFA1BConfiguration());
    DocumentHandlerStub hdl = new DocumentHandlerStub(null);
    hdl.setDocument(pdoc);
    helper.innerValidate(hdl);
    COSUtils.closeDocumentQuietly(pdoc);
  }
View Full Code Here

public class TestPageValidationHelper {
  @Test(expected = ValidationException.class)
  public void noCatalogEntry() throws Exception {
    PDDocument pdoc = new NOCatalogDocument();
    PagesValidationHelper helper = new PagesValidationHelper(PdfAValidatorFactory.getStandardPDFA1BConfiguration());
    DocumentHandlerStub hdl = new DocumentHandlerStub(null);
    hdl.setDocument(pdoc);
    helper.innerValidate(hdl);
    COSUtils.closeDocumentQuietly(pdoc);
  }
View Full Code Here

TOP

Related Classes of org.apache.padaf.preflight.util.DocumentHandlerStub

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.