summaryrefslogtreecommitdiff
path: root/vendor/zordius/lightncandy/phpunit.xml
blob: 4e9417f16bc0791d20b0f32cc27d4993664c45c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<phpunit 
 backupGlobals="false"
 colors="true"
 convertNoticesToExceptions="false"
>
 <filter>
  <whitelist>
   <directory suffix=".php">./src</directory>
  </whitelist>
 </filter>

 <logging>
  <log type="coverage-html" target="build/result/coverage" title="lightncandy" charset="UTF-8" />
  <log type="coverage-text" target="php://stdout" />
 </logging>

 <testsuites>
  <testsuite name="LightnCandy Test Suite">
   <directory>./tests/</directory>
  </testsuite>
 </testsuites>
</phpunit>