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