File tree Expand file tree Collapse file tree 2 files changed +32
-1
lines changed
Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 11build /
22composer.lock
33composer.phar
4- phpunit. *
54vendor /
65mailPiped /
76* .lock
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+
3+ <phpunit bootstrap =" vendor/autoload.php"
4+ backupGlobals =" false"
5+ backupStaticAttributes =" false"
6+ colors =" false"
7+ convertErrorsToExceptions =" true"
8+ convertNoticesToExceptions =" true"
9+ convertWarningsToExceptions =" true"
10+ processIsolation =" false"
11+ stopOnFailure =" false" >
12+ <testsuites >
13+ <testsuite name =" Mail Reader Parser Test Suite" >
14+ <directory suffix =" .php" >tests/</directory >
15+ </testsuite >
16+ </testsuites >
17+
18+ <filter >
19+ <whitelist >
20+ <directory suffix =" .php" >decode/</directory >
21+ </whitelist >
22+ </filter >
23+
24+ <logging >
25+ <log type =" tap" target =" build/report.tap" />
26+ <log type =" junit" target =" build/report.junit.xml" />
27+ <log type =" coverage-html" target =" build/coverage" />
28+ <log type =" coverage-text" target =" build/coverage.txt" />
29+ <log type =" coverage-clover" target =" build/logs/clover.xml" />
30+ </logging >
31+ </phpunit >
32+
You can’t perform that action at this time.
0 commit comments