This repository has been archived by the owner on Nov 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
47 lines (46 loc) · 1.88 KB
/
phpunit.xml.dist
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
47
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
bootstrap="bootstrap.php"
cacheResultFile="tmp/tests/cache"
executionOrder="random"
forceCoversAnnotation="true"
defaultTestSuite="full"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
convertDeprecationsToExceptions="true"
failOnRisky="true"
failOnWarning="true"
verbose="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"
processUncoveredFiles="true">
<include>
<directory suffix=".php">modules/*/src</directory>
</include>
<exclude>
<file>**/*Exception.php</file>
</exclude>
</coverage>
</phpunit>