-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpunit.xml
26 lines (26 loc) · 883 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
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache">
<coverage>
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory prefix="Mock">src</directory>
<directory suffix="Test.php">src</directory>
<directory suffix=".php">src/cache</directory>
</exclude>
<report>
<clover outputFile="target/reports/unit/clover.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="wick-ed/timely PHPUnit testsuite">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<!-- Code coverage report, optional -->
<logging/>
<php>
<ini name="date.timezone" value="Europe/Berlin"/>
</php>
</phpunit>