|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | - |
3 | | -<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html --> |
4 | | -<phpunit |
5 | | - backupGlobals = "false" |
6 | | - backupStaticAttributes = "false" |
7 | | - colors = "true" |
8 | | - convertErrorsToExceptions = "true" |
9 | | - convertNoticesToExceptions = "true" |
10 | | - convertWarningsToExceptions = "true" |
11 | | - processIsolation = "false" |
12 | | - stopOnFailure = "false" |
13 | | - bootstrap = "vendor/autoload.php" > |
14 | | - |
| 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="false" |
| 8 | + beStrictAboutCoversAnnotation="false" |
| 9 | + beStrictAboutOutputDuringTests="true" |
| 10 | + beStrictAboutTodoAnnotatedTests="true" |
| 11 | + convertDeprecationsToExceptions="true" |
| 12 | + failOnRisky="true" |
| 13 | + failOnWarning="true" |
| 14 | + verbose="true"> |
15 | 15 | <testsuites> |
16 | 16 | <testsuite name="Project Test Suite"> |
17 | | - <directory>src/Kiczort/*/Tests</directory> |
| 17 | + <directory>tests</directory> |
18 | 18 | </testsuite> |
19 | 19 | </testsuites> |
| 20 | + |
| 21 | + <coverage cacheDirectory=".phpunit.cache/code-coverage" |
| 22 | + processUncoveredFiles="true"> |
| 23 | + <include> |
| 24 | + <directory suffix=".php">src</directory> |
| 25 | + </include> |
| 26 | + </coverage> |
20 | 27 | </phpunit> |
0 commit comments