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.dist
More file actions
Latest commit
37 lines (36 loc) · 1.56 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
37 lines (36 loc) · 1.56 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunitxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="bootstrap.php"
cacheResultFile="tmp/tests/cache"
executionOrder="random"
requireCoverageMetadata="true"
defaultTestSuite="full"
beStrictAboutCoverageMetadata="true"
beStrictAboutOutputDuringTests="true"
failOnDeprecation="true"
failOnRisky="true"
failOnWarning="true">
<php>
<constname="REQUEST_FACTORY"value="Nyholm\Psr7\Factory\Psr17Factory"/>
<constname="RESPONSE_FACTORY"value="Nyholm\Psr7\Factory\Psr17Factory"/>
<constname="SERVER_REQUEST_FACTORY"value="Nyholm\Psr7\Factory\Psr17Factory"/>
<constname="UPLOADED_FILE_FACTORY"value="Nyholm\Psr7\Factory\Psr17Factory"/>
<constname="URI_FACTORY"value="Nyholm\Psr7\Factory\Psr17Factory"/>
<constname="STREAM_FACTORY"value="Nyholm\Psr7\Factory\Psr17Factory"/>
</php>
<testsuites>
<testsuitename="full">
<directory>modules/*/test</directory>
</testsuite>
<testsuitename="memory-leak">
<directory>modules/*/test</directory>
<exclude>modules/Http/test/PSR7</exclude>
</testsuite>
<testsuitename="without-files">
<directory>modules/*/test</directory>
<exclude>modules/Files/test</exclude>
</testsuite>
</testsuites>
<coveragecacheDirectory="tmp/coverage/cache" />
</phpunit>