Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
Latest commit
32 lines (29 loc) · 1.01 KB
/
Copy pathphpunit.xml
File metadata and controls
32 lines (29 loc) · 1.01 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunitxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/sebastianbergmann/phpunit/master/phpunit.xsd"
colors="true"
bootstrap="vendor/autoload.php"
failOnRisky="true"
>
<php>
<ininame="error_reporting"value="-1" />
<ininame="intl.default_locale"value="en" />
<ininame="intl.error_level"value="0" />
<ininame="memory_limit"value="-1" />
<envname="SYMFONY_DEPRECATIONS_HELPER"value="max[total]=50&max[self]=0&verbose=0"/>
</php>
<testsuites>
<testsuitename="msgphp/eav">
<directory>./Tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./Tests</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>