-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
35 lines (34 loc) · 1.21 KB
/
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
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/7.0/phpunit.xsd"
bootstrap="./test/bootstrap.php"
colors="true">
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./test/Unit</directory>
</testsuite>
<testsuite name="Integration">
<directory suffix="Test.php">./test/Integration</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src/</directory>
<exclude>
<directory>./src/Domain/DataTransferObject</directory>
</exclude>
</whitelist>
</filter>
<php>
<env name="CLIENT_ID" value="#"/>
<env name="CLIENT_SECRET" value="#"/>
<env name="REDIRECT_URI" value="#"/>
<env name="SPOTIFY_USERNAME" value="#"/>
<env name="REFRESH_TOKEN" value="#" />
</php>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml" />
<log type="coverage-html" target="build/logs/html" />
<log type="coverage-text" target="php://stdout" />
</logging>
</phpunit>