-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml
37 lines (37 loc) · 1.43 KB
/
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
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.4/phpunit.xsd"
colors="true"
backupGlobals="false"
bootstrap="vendor/autoload.php"
forceCoversAnnotation="false"
beStrictAboutCoversAnnotation="false"
beStrictAboutOutputDuringTests="false"
beStrictAboutTodoAnnotatedTests="false"
verbose="false">
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<!-- this is the path of the files included in your clover report -->
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<!-- and this is where your report will be written -->
<log type="coverage-clover" target="./tests/clover.xml"/>
</logging>
<php>
<ini name="error_reporting" value="-1" />
<env name="UNIFI_USER" value="UnifiStats" />
<env name="UNIFI_PASS" value="Password" />
<env name="UNIFI_URL" value="https://localhost" />
<env name="UNIFI_ZONE" value="default" />
<env name="UNIFI_VERSION" value="6.6.23" />
<!-- define your env variables for the test env here -->
</php>
<testsuites>
<testsuite name="Application Test Suite">
<directory suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
</phpunit>