Skip to content
Snippets Groups Projects
phpunit.xml.dist 821 B
Newer Older
  • Learn to ignore specific revisions
  • <?xml version="1.0"?>
    <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             backupGlobals="false"
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
             backupStaticAttributes="false"
             colors="true"
             convertErrorsToExceptions="true"
             convertNoticesToExceptions="true"
             convertWarningsToExceptions="true"
    
             convertDeprecationsToExceptions="true"
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
             processIsolation="false"
             stopOnFailure="false"
    
             stderr="true"
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
             beStrictAboutTestsThatDoNotTestAnything="false"
             bootstrap="tests/phpunit/bootstrap.php"
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
             cacheResult="false"
    
             xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
    
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
      <testsuites>
        <testsuite name="CiviCRM-WordPress Test Suite">
          <directory>./tests/phpunit</directory>
        </testsuite>
      </testsuites>
    </phpunit>