Skip to content
Snippets Groups Projects
Select Git revision
  • cad3fd33956e8daa1f368f06fc8da50b3d08bebe
  • master default
  • rename_category_group
  • php8.1_deprecations
  • v3.5
  • v3.3.1
  • v3.4
  • v3.3
  • v3.2
  • v3.1
  • v3.0
  • v2.4
  • v2.3
  • v2.2
  • v2.1
  • v2.0
  • v1.0
17 results

phpunit.xml.dist

Blame
  • phpunit.xml.dist 678 B
    <?xml version="1.0" encoding="UTF-8"?>
    <phpunit bootstrap="./vendor/autoload.php"
             colors="true"
             convertErrorsToExceptions="true"
             convertNoticesToExceptions="true"
             convertWarningsToExceptions="true"
             stopOnFailure="false">
        <testsuites>
            <testsuite>
                <directory>./test/Api</directory>
                <directory>./test/Model</directory>
            </testsuite>
        </testsuites>
    
        <filter>
            <whitelist processUncoveredFilesFromWhitelist="true">
                <directory suffix=".php">./lib/Api</directory>
                <directory suffix=".php">./lib/Model</directory>
            </whitelist>
        </filter>
    </phpunit>