Skip to content
Snippets Groups Projects
phpunit.xml.dist 1.27 KiB
Newer Older
  • Learn to ignore specific revisions
  • <phpunit backupGlobals="false"
             backupStaticAttributes="false"
             colors="true"
             convertErrorsToExceptions="true"
             convertNoticesToExceptions="true"
             convertWarningsToExceptions="true"
    
             convertDeprecationsToExceptions="true"
    
             processIsolation="false"
             stopOnFailure="false"
    
             beStrictAboutTestsThatDoNotTestAnything="false"
             bootstrap="tests/phpunit/CiviTest/bootstrap.php"
    
        <testsuite name="api_v3_AllTests">
          <directory>./tests/phpunit/api</directory>
        </testsuite>
        <testsuite name="CRM_AllTests">
          <directory>./tests/phpunit/CRM</directory>
        </testsuite>
        <testsuite name="Civi_AllTests">
          <directory>./tests/phpunit/Civi</directory>
        </testsuite>
        <testsuite name="WebTest_AllTests">
          <directory>./tests/phpunit/WebTest</directory>
    
        </testsuite>
      </testsuites>
    
      <filter>
        <whitelist>
          <directory suffix=".php">./CRM</directory>
          <directory suffix=".php">./Civi</directory>
          <directory suffix=".php">./api</directory>
        </whitelist>
      </filter>
    
    
      <listeners>
        <listener class="Civi\Test\CiviTestListener">
          <arguments></arguments>
        </listener>
      </listeners>