forked from seblucas/cops
-
Notifications
You must be signed in to change notification settings - Fork 7
/
phpunit.xml.dist
27 lines (27 loc) · 933 Bytes
/
phpunit.xml.dist
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 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="./vendor/autoload.php" cacheDirectory=".phpunit.cache">
<coverage>
<report>
<clover outputFile="./clover.xml"/>
<text outputFile="php://stdout" showUncoveredFiles="false"/>
</report>
</coverage>
<logging/>
<testsuites>
<testsuite name="COPS">
<directory>./tests/</directory>
<exclude>./tests/WebDriverTest.php</exclude>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./</directory>
</include>
<exclude>
<directory suffix=".php">./resources</directory>
<directory suffix=".php">./tests</directory>
<directory suffix=".php">./vendor</directory>
<directory suffix=".php">./config</directory>
</exclude>
</source>
</phpunit>