Skip to content
Snippets Groups Projects
phpunit.xml.dist 645 B
Newer Older
  • Learn to ignore specific revisions
  • <?xml version="1.0"?>
    
    mattwire's avatar
    mattwire committed
    <phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" bootstrap="tests/phpunit/bootstrap.php">
    
      <testsuites>
        <testsuite name="My Test Suite">
          <directory>./tests/phpunit</directory>
        </testsuite>
      </testsuites>
      <filter>
        <whitelist>
          <directory suffix=".php">./</directory>
        </whitelist>
      </filter>
      <listeners>
        <listener class="Civi\Test\CiviTestListener">
          <arguments/>
        </listener>
      </listeners>
    </phpunit>