<?xml version="1.0" encoding="UTF-8"?>

<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false"
         syntaxCheck="false"
         bootstrap="../vendor/autoload.php"
        >
  <php>
    <ini name="intl.default_locale" value="en"/>
    <ini name="intl.error_level" value="0"/>
    <ini name="memory_limit" value="-1"/>
  </php>

  <testsuites>
    <testsuite name="htmLawed Test Suite">
      <directory suffix="Test.php">.</directory>
    </testsuite>
  </testsuites>

  <filter>
    <whitelist>
      <directory>../src/</directory>
      <exclude>
        <directory>.</directory>
      </exclude>
    </whitelist>
  </filter>
</phpunit>
