-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
37 lines (36 loc) · 1.56 KB
/
phpunit.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"?>
<phpunit xmlns: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>
<const name="REQUEST_FACTORY" value="Nyholm\Psr7\Factory\Psr17Factory"/>
<const name="RESPONSE_FACTORY" value="Nyholm\Psr7\Factory\Psr17Factory"/>
<const name="SERVER_REQUEST_FACTORY" value="Nyholm\Psr7\Factory\Psr17Factory"/>
<const name="UPLOADED_FILE_FACTORY" value="Nyholm\Psr7\Factory\Psr17Factory"/>
<const name="URI_FACTORY" value="Nyholm\Psr7\Factory\Psr17Factory"/>
<const name="STREAM_FACTORY" value="Nyholm\Psr7\Factory\Psr17Factory"/>
</php>
<testsuites>
<testsuite name="full">
<directory>modules/*/test</directory>
</testsuite>
<testsuite name="memory-leak">
<directory>modules/*/test</directory>
<exclude>modules/Http/test/PSR7</exclude>
</testsuite>
<testsuite name="without-files">
<directory>modules/*/test</directory>
<exclude>modules/Files/test</exclude>
</testsuite>
</testsuites>
<coverage cacheDirectory="tmp/coverage/cache" />
</phpunit>