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
46 lines (42 loc) · 1.63 KB
/
Copy pathphpunit.xml
File metadata and controls
46 lines (42 loc) · 1.63 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="UTF-8"?>
<phpunitxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.5/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="phpunit.php"
failOnDeprecation="true"
failOnRisky="true"
failOnWarning="true"
displayDetailsOnAllIssues="true"
>
<php>
<ininame="error_reporting"value="-1"/>
<ininame="display_errors"value="1"/>
<ininame="display_startup_errors"value="1"/>
<ininame="intl.default_locale"value="en"/>
<ininame="intl.error_level"value="0"/>
<ininame="memory_limit"value="-1"/>
</php>
<testsuites>
<testsuitename="RunOpenCode library test suite">
<directory>./src/RunOpenCode/Component/*/tests/</directory>
<directory>./src/RunOpenCode/Bundle/*/tests/</directory>
</testsuite>
</testsuites>
<sourceignoreSuppressionOfDeprecations="true">
<include>
<directory>./src/RunOpenCode/</directory>
</include>
<exclude>
<directory>./src/RunOpenCode/Component/*/tests/</directory>
<directory>./src/RunOpenCode/Bundle/*/tests/</directory>
<directory>./src/RunOpenCode/Component/*/vendor/</directory>
<directory>./src/RunOpenCode/Bundle/*/vendor/</directory>
</exclude>
</source>
<coverageincludeUncoveredFiles="true">
<report>
<htmloutputDirectory="./build/phpunit"lowUpperBound="50"highLowerBound="90"/>
</report>
</coverage>
</phpunit>