Package org.apache.padaf.preflight.helpers

Examples of org.apache.padaf.preflight.helpers.PagesValidationHelper


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.helpers.PagesValidationHelper

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.