Package org.apache.padaf.preflight.helpers

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


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


    afvh.validate(new DocumentHandlerStub(null));
  }

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

TOP

Related Classes of org.apache.padaf.preflight.helpers.AcroFormValidationHelper

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.