forked from eloquent/pops
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
30 lines (27 loc) · 707 Bytes
/
phpunit.xml
File metadata and controls
30 lines (27 loc) · 707 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
<phpunit
bootstrap="vendor/autoload.php"
colors="true"
beStrictAboutChangesToGlobalState="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
>
<testsuites>
<testsuite name="main">
<directory>test/suite</directory>
</testsuite>
</testsuites>
<coverage>
<report>
<text outputFile="php://stdout" showOnlySummary="true"/>
</report>
</coverage>
<source>
<include>
<directory>src</directory>
</include>
</source>
<php>
<ini name="error_reporting" value="-1"/>
<ini name="memory_limit" value="256M"/>
</php>
</phpunit>