@Test
public void testGetValidationPageProcess_noError() throws Exception {
PreflightConfiguration confg = PreflightConfiguration.createPdfA1BConfiguration();
confg.setErrorOnMissingProcess(false);
confg.removePageProcess(PreflightConfiguration.RESOURCES_PROCESS);
ValidationProcess vp = confg.getInstanceOfProcess(PreflightConfiguration.RESOURCES_PROCESS);
Assert.assertNotNull(vp);
Assert.assertTrue(vp instanceof EmptyValidationProcess);
}