|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<phpunit backupGlobals="false" |
3 | | - backupStaticAttributes="false" |
4 | | - beStrictAboutTestsThatDoNotTestAnything="false" |
5 | | - bootstrap="vendor/autoload.php" |
6 | | - colors="true" |
7 | | - convertErrorsToExceptions="true" |
8 | | - convertNoticesToExceptions="true" |
9 | | - convertWarningsToExceptions="true" |
10 | | - processIsolation="false" |
11 | | - stopOnFailure="false" |
12 | | - verbose="true"> |
13 | | - |
14 | | - <testsuites> |
15 | | - <testsuite name="Laravel JS Routes Test Suite"> |
16 | | - <directory suffix="Test.php">./tests/</directory> |
17 | | - </testsuite> |
18 | | - </testsuites> |
19 | | - <filter> |
20 | | - <whitelist processUncoveredFilesFromWhitelist="true"> |
21 | | - <directory suffix=".php">./src/</directory> |
22 | | - </whitelist> |
23 | | - </filter> |
24 | | - |
25 | | - <php> |
26 | | - <server name="APP_ENV" value="testing"/> |
27 | | - <server name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/> |
28 | | - </php> |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + backupGlobals="false" |
| 4 | + backupStaticAttributes="false" |
| 5 | + beStrictAboutTestsThatDoNotTestAnything="false" |
| 6 | + bootstrap="vendor/autoload.php" |
| 7 | + colors="true" |
| 8 | + convertErrorsToExceptions="true" |
| 9 | + convertNoticesToExceptions="true" |
| 10 | + convertWarningsToExceptions="true" |
| 11 | + processIsolation="false" |
| 12 | + stopOnFailure="false" |
| 13 | + verbose="true" |
| 14 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> |
| 15 | + <coverage processUncoveredFiles="true"> |
| 16 | + <include> |
| 17 | + <directory suffix=".php">./src/</directory> |
| 18 | + </include> |
| 19 | + </coverage> |
| 20 | + <testsuites> |
| 21 | + <testsuite name="Laravel JS Routes Test Suite"> |
| 22 | + <directory suffix="Test.php">./tests/</directory> |
| 23 | + </testsuite> |
| 24 | + </testsuites> |
| 25 | + <php> |
| 26 | + <server name="APP_ENV" value="testing"/> |
| 27 | + <server name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/> |
| 28 | + </php> |
29 | 29 | </phpunit> |
0 commit comments