Blame view

vendor/sebastian/environment/phpunit.xml.dist 616 Bytes
ad2e91f7   Mihail   move multyparser ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  <?xml version="1.0" encoding="UTF-8"?>
  <phpunit backupGlobals="false"
           backupStaticAttributes="false"
           bootstrap="vendor/autoload.php"
           beStrictAboutOutputDuringTests="true"
           beStrictAboutTestsThatDoNotTestAnything="true"
           beStrictAboutTodoAnnotatedTests="true"
           checkForUnintentionallyCoveredCode="true"
           verbose="true">
   <testsuites>
    <testsuite name="Environment">
     <directory>tests</directory>
    </testsuite>
   </testsuites>
   <filter>
    <whitelist addUncoveredFilesFromWhitelist="true">
     <directory>src</directory>
    </whitelist>
   </filter>
  </phpunit>