|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<phpunit backupGlobals="false" |
3 | | - backupStaticAttributes="false" |
4 | | - beStrictAboutTestsThatDoNotTestAnything="true" |
5 | | - bootstrap="vendor/autoload.php" |
6 | | - colors="true" |
7 | | - convertErrorsToExceptions="true" |
8 | | - convertNoticesToExceptions="true" |
9 | | - convertWarningsToExceptions="true" |
10 | | - processIsolation="false" |
11 | | - stopOnError="false" |
12 | | - stopOnFailure="false" |
13 | | - verbose="true" |
14 | | -> |
15 | | - <testsuites> |
16 | | - <testsuite name="Smspoh Channel Test Suite"> |
17 | | - <directory suffix="Test.php">./tests</directory> |
18 | | - </testsuite> |
19 | | - </testsuites> |
20 | | - <filter> |
21 | | - <whitelist processUncoveredFilesFromWhitelist="true"> |
22 | | - <directory suffix=".php">./src</directory> |
23 | | - </whitelist> |
24 | | - </filter> |
25 | | - <logging> |
26 | | - <log type="tap" target="build/report.tap" /> |
27 | | - <log type="junit" target="build/report.junit.xml" /> |
28 | | - <log type="coverage-html" target="build/coverage" /> |
29 | | - <log type="coverage-text" target="build/coverage.txt" /> |
30 | | - <log type="coverage-clover" target="build/logs/clover.xml" /> |
31 | | - </logging> |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" beStrictAboutTestsThatDoNotTestAnything="true" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnError="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false"> |
| 3 | + <coverage> |
| 4 | + <report> |
| 5 | + <clover outputFile="build/logs/clover.xml"/> |
| 6 | + <html outputDirectory="build/coverage"/> |
| 7 | + <text outputFile="build/coverage.txt"/> |
| 8 | + </report> |
| 9 | + </coverage> |
| 10 | + <testsuites> |
| 11 | + <testsuite name="Smspoh Channel Test Suite"> |
| 12 | + <directory suffix="Test.php">./tests</directory> |
| 13 | + </testsuite> |
| 14 | + </testsuites> |
| 15 | + <logging> |
| 16 | + <junit outputFile="build/report.junit.xml"/> |
| 17 | + </logging> |
| 18 | + <source> |
| 19 | + <include> |
| 20 | + <directory suffix=".php">./src</directory> |
| 21 | + </include> |
| 22 | + </source> |
32 | 23 | </phpunit> |
0 commit comments