-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
35 lines (30 loc) · 966 Bytes
/
phpunit.xml.dist
File metadata and controls
35 lines (30 loc) · 966 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
bootstrap="vendor/autoload.php"
backupGlobals="false"
requireCoverageMetadata="false"
verbose="true">
<testsuites>
<testsuite name="MySQL">
<directory suffix="Test.php">tests</directory>
</testsuite>
<testsuite name="MongoDB">
<directory suffix="MongoDB.php">tests/mongodb</directory>
</testsuite>
</testsuites>
<source ignoreIndirectDeprecations="true" restrictNotices="true" restrictWarnings="true">
<include>
<directory>src</directory>
</include>
</source>
<coverage processUncoveredFiles="true">
<report>
<clover outputFile="build/logs/clover.xml"/>
</report>
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
</phpunit>