forked from brandonsavage/Upload
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathphpunit.xml
More file actions
20 lines (20 loc) · 756 Bytes
/
Copy pathphpunit.xml
File metadata and controls
20 lines (20 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- convertDeprecationsToExceptions, because a deprecation raised from src/ otherwise passes
straight through a green run: `$file[] = $fileInfo` wrote a string key and warned about it
on PHP 8.5 for a release, with the suite reporting OK. -->
<phpunit backupGlobals="true"
convertDeprecationsToExceptions="true"
failOnWarning="true"
failOnRisky="true"
colors="true"
bootstrap="tests/bootstrap.php">
<testsuites>
<testsuite name="Upload Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory>./src/Upload/</directory>
</include>
</coverage>
</phpunit>