forked from jimmiw/php-time-ago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
27 lines (24 loc) · 805 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
colors="true"
forceCoversAnnotation="false"
codecoverage="true"
bootstrap="vendor/autoload.php">
<testsuite name="php-time-ago">
<directory>./tests/</directory>
</testsuite>
<filter>
<whitelist>
<directory suffix=".php">./</directory>
<exclude>
<directory suffix=".php">./vendor</directory>
<directory suffix=".php">./translations</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./report" charset="UTF-8" yui="true"
highlight="true" lowUpperBound="50" highLowerBound="80" />
<log type="testdox" target="./report/testdox.html" />
</logging>
</phpunit>