Verifications

Project-specific configuration file for the Verifier Plugin. It contains definitions of the files and directories to be checked after an integration test has run. It can also check for file content against regular expressions.

<verifications>
  <files>
    <file>
      <location/>
      <contains/>
      <exists/>
    </file>
  </files>
</verifications>

verifications

Root element of the verifications file.

Element Type Description
files/file* List<File> (Many) List of files and directories to check.

file

No description.

Element Type Description
location String Location of the file or directory to check.
contains String Check the content against this regular expression.
exists boolean When this is set to true the plugin checks that the file or directory exists. When set to false it checks that the file or directory does not exist.
Default value is: true.