File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.5/phpunit.xsd"
4
+ bootstrap =" vendor/autoload.php"
5
+ cacheResultFile =" .phpunit.cache/test-results"
6
+ executionOrder =" depends,defects"
7
+ forceCoversAnnotation =" true"
8
+ beStrictAboutCoversAnnotation =" true"
9
+ beStrictAboutOutputDuringTests =" true"
10
+ beStrictAboutTodoAnnotatedTests =" true"
11
+ convertDeprecationsToExceptions =" true"
12
+ failOnRisky =" true"
13
+ failOnWarning =" true"
14
+ verbose =" true" >
15
+ <testsuites >
16
+ <testsuite name =" default" >
17
+ <directory >Tests</directory >
18
+ </testsuite >
19
+ </testsuites >
20
+
21
+ <coverage cacheDirectory =" .phpunit.cache/code-coverage"
22
+ processUncoveredFiles =" true" >
23
+ <include >
24
+ <directory suffix =" .php" >./</directory >
25
+ </include >
26
+
27
+ <exclude >
28
+ <directory suffix =" .php" >vendor/</directory >
29
+ <directory suffix =" .php" >Tests/</directory >
30
+ </exclude >
31
+ </coverage >
32
+ </phpunit >
You can’t perform that action at this time.
0 commit comments