|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <phpunit |
3 | 3 | backupGlobals="false" |
4 | | - backupStaticAttributes="false" |
| 4 | + backupStaticProperties="false" |
5 | 5 | bootstrap="vendor/autoload.php" |
| 6 | + cacheDirectory=".phpunit.cache" |
6 | 7 | colors="true" |
7 | | - convertErrorsToExceptions="true" |
8 | | - convertNoticesToExceptions="true" |
9 | | - convertWarningsToExceptions="true" |
10 | 8 | processIsolation="false" |
11 | 9 | stopOnFailure="true" |
| 10 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 11 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" |
12 | 12 | > |
13 | 13 | <testsuites> |
14 | 14 | <testsuite name="Feature"> |
|
21 | 21 | <directory suffix="Test.php">./tests/Nova</directory> |
22 | 22 | </testsuite> |
23 | 23 | </testsuites> |
24 | | - <filter> |
25 | | - <whitelist processUncoveredFilesFromWhitelist="false"> |
26 | | - <directory suffix=".php">./src</directory> |
27 | | - </whitelist> |
28 | | - </filter> |
29 | 24 | <php> |
30 | 25 | <env name="APP_KEY" value="base64:Xgs1LQt1GdVHhD6qyYCXnyq61DE3UKqJ5k2SJc+Nw2g="/> |
31 | 26 | <env name="APP_ENV" value="testing"/> |
|
38 | 33 | <env name="REDIS_HOST" value="127.0.0.1"/> |
39 | 34 | <env name="PGSQL_HOST" value="127.0.0.1"/> |
40 | 35 | </php> |
| 36 | + <source> |
| 37 | + <include> |
| 38 | + <directory suffix=".php">./src</directory> |
| 39 | + </include> |
| 40 | + </source> |
41 | 41 | </phpunit> |
0 commit comments