PDFUnit bietet einen Test, Inhalte von PDF-Dokumenten auf ihre Nicht-Existenz zu überprüfen.
<!-- This example shows how to verify that an expected text is not present in the complete document. --> <testcase name="verifyOldCEONotPresent"> <assertThat testDocument="content/diverseContentOnMultiplePages.pdf"> <hasText on="EVERY_PAGE"> <notContaining>NameOfOldCEO</notContaining> </hasText> </assertThat> </testcase>