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