|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <phpunit |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" |
5 | | - backupGlobals="false" |
6 | | - backupStaticAttributes="false" |
7 | | - bootstrap="vendor/autoload.php" |
8 | | - colors="true" |
9 | | - convertErrorsToExceptions="true" |
10 | | - convertNoticesToExceptions="true" |
11 | | - convertWarningsToExceptions="true" |
12 | | - processIsolation="false" |
13 | | - stopOnFailure="false" |
14 | | - executionOrder="random" |
15 | | - failOnWarning="true" |
16 | | - failOnRisky="true" |
17 | | - failOnEmptyTestSuite="true" |
18 | | - beStrictAboutOutputDuringTests="true" |
19 | | - verbose="true" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" |
| 5 | + backupGlobals="false" |
| 6 | + bootstrap="vendor/autoload.php" |
| 7 | + colors="true" |
| 8 | + processIsolation="false" |
| 9 | + stopOnFailure="false" |
| 10 | + executionOrder="random" |
| 11 | + failOnWarning="true" |
| 12 | + failOnRisky="true" |
| 13 | + failOnEmptyTestSuite="true" |
| 14 | + beStrictAboutOutputDuringTests="true" |
| 15 | + cacheDirectory=".phpunit.cache" |
| 16 | + backupStaticProperties="false" |
20 | 17 | > |
21 | 18 | <testsuites> |
22 | | - <testsuite name="VendorName Test Suite"> |
| 19 | + <testsuite name="BlameButton Laravel Changelog Test Suite"> |
23 | 20 | <directory>tests</directory> |
24 | 21 | </testsuite> |
25 | 22 | </testsuites> |
26 | 23 | <coverage> |
27 | | - <include> |
28 | | - <directory suffix=".php">./src</directory> |
29 | | - </include> |
30 | 24 | <report> |
31 | 25 | <html outputDirectory="build/coverage"/> |
32 | 26 | <text outputFile="build/coverage.txt"/> |
|
36 | 30 | <logging> |
37 | 31 | <junit outputFile="build/report.junit.xml"/> |
38 | 32 | </logging> |
| 33 | + <source> |
| 34 | + <include> |
| 35 | + <directory>src</directory> |
| 36 | + </include> |
| 37 | + </source> |
39 | 38 | </phpunit> |
0 commit comments