File tree Expand file tree Collapse file tree 2 files changed +34
-1
lines changed
Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Original file line number Diff line number Diff line change 44/coverage
55/.phpunit.result.cache
66/.phpunit.cache
7- /phpunit.xml
87.DS_Store
98Thumbs.db
109* .log
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/11.0/phpunit.xsd"
4+ bootstrap =" vendor/autoload.php"
5+ colors =" true"
6+ processIsolation =" false"
7+ stopOnFailure =" false"
8+ executionOrder =" random"
9+ failOnWarning =" true"
10+ failOnRisky =" true"
11+ failOnEmptyTestSuite =" true"
12+ beStrictAboutOutputDuringTests =" true"
13+ >
14+ <testsuites >
15+ <testsuite name =" Unit" >
16+ <directory >tests/Unit</directory >
17+ </testsuite >
18+ <testsuite name =" Feature" >
19+ <directory >tests/Feature</directory >
20+ </testsuite >
21+ </testsuites >
22+ <coverage >
23+ <report >
24+ <html outputDirectory =" build/coverage" />
25+ <text outputFile =" build/coverage.txt" />
26+ <clover outputFile =" build/logs/clover.xml" />
27+ </report >
28+ </coverage >
29+ <source >
30+ <include >
31+ <directory suffix =" .php" >src</directory >
32+ </include >
33+ </source >
34+ </phpunit >
You can’t perform that action at this time.
0 commit comments