-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
31 lines (28 loc) · 865 Bytes
/
phpunit.xml
File metadata and controls
31 lines (28 loc) · 865 Bytes
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
<phpunit
bootstrap="vendor/autoload.php"
colors="true"
beStrictAboutChangesToGlobalState="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
convertErrorsToExceptions="true"
>
<testsuites>
<testsuite name="main">
<directory>test/suite</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="artifacts/coverage" />
<log type="coverage-clover" target="artifacts/coverage/coverage.xml" />
<log type="coverage-text" target="artifacts/coverage/coverage.txt" />
</logging>
<filter>
<whitelist>
<directory>src</directory>
</whitelist>
</filter>
<php>
<ini name="error_reporting" value="-1"/>
<ini name="memory_limit" value="256M"/>
</php>
</phpunit>