| Termination specifier | Optional | The termination specifier is an optional element that can 
    be used to indicate failure or error circumstances when Blitz 
    should stop executing.  If used, either or both of the following 
    elements may be used: 
      maximumFailures: Must be a positive integer. Tells Blitz 
      to terminate as soon as the total number of test failures (as determined 
      by the operative) exceeds the given number.maximumErrors: Must be a positive integer. Tells Blitz 
      to terminate as soon as the total number of errors (i.e. exceptions that 
      indicate some kind of problem with the application) exceeds the given 
      number. If neither value is specified, Blitz will allow an 
    unlimited number of test failures, but will terminate at the occurrence of 
    the first detected error. |