|
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 | | - verbose="true" |
15 | | -> |
16 | | - <testsuites> |
17 | | - <testsuite name="unit"> |
18 | | - <directory suffix="Test.php">./tests/Unit</directory> |
19 | | - </testsuite> |
20 | | - <testsuite name="integration"> |
21 | | - <directory suffix="Test.php">./tests/Integration</directory> |
22 | | - </testsuite> |
23 | | - </testsuites> |
24 | | - <listeners> |
25 | | - <listener class="\Mockery\Adapter\Phpunit\TestListener" |
26 | | - file="vendor/mockery/mockery/library/Mockery/Adapter/Phpunit/TestListener.php"> |
27 | | - </listener> |
28 | | - </listeners> |
29 | | - <coverage> |
30 | | - <include> |
31 | | - <directory suffix=".php">./src</directory> |
32 | | - </include> |
33 | | - <report> |
34 | | - <html outputDirectory="build/coverage"/> |
35 | | - <text outputFile="build/coverage.txt"/> |
36 | | - <clover outputFile="build/logs/clover.xml"/> |
37 | | - </report> |
38 | | - </coverage> |
39 | | - <logging> |
40 | | - <junit outputFile="build/report.junit.xml"/> |
41 | | - </logging> |
42 | | - <php> |
43 | | - <env name="APP_ENV" value="testing"/> |
44 | | - <env name="APP_DEBUG" value="true"/> |
45 | | - <env name="APP_KEY" value="V4EYYl0MjI4Bin9GkFPUE3cpAARPCF27"/> |
46 | | - <env name="CACHE_DRIVER" value="array"/> |
47 | | - <env name="SESSION_DRIVER" value="array"/> |
48 | | - <env name="QUEUE_DRIVER" value="sync"/> |
49 | | - <env name="DB_DATABASE" value="laravel"/> |
50 | | - <env name="DB_HOST" value="127.0.0.1"/> |
51 | | - <env name="DB_PORT" value="3306"/> |
52 | | - <env name="DB_USERNAME" value="root"/> |
53 | | - <env name="DB_PASSWORD" value="root"/> |
54 | | - </php> |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" executionOrder="random" failOnWarning="true" failOnRisky="true" failOnEmptyTestSuite="true" beStrictAboutOutputDuringTests="true" cacheDirectory=".phpunit.cache" backupStaticProperties="false"> |
| 3 | + <testsuites> |
| 4 | + <testsuite name="Test Suite"> |
| 5 | + <directory>tests</directory> |
| 6 | + </testsuite> |
| 7 | + </testsuites> |
| 8 | + <coverage> |
| 9 | + <include> |
| 10 | + <directory suffix=".php">./src</directory> |
| 11 | + </include> |
| 12 | + <report> |
| 13 | + <html outputDirectory="build/coverage"/> |
| 14 | + <text outputFile="build/coverage.txt"/> |
| 15 | + <clover outputFile="build/logs/clover.xml"/> |
| 16 | + </report> |
| 17 | + </coverage> |
| 18 | + <logging> |
| 19 | + <junit outputFile="build/report.junit.xml"/> |
| 20 | + </logging> |
| 21 | + <php> |
| 22 | + <env name="APP_ENV" value="testing"/> |
| 23 | + <env name="APP_DEBUG" value="true"/> |
| 24 | + <env name="APP_KEY" value="V4EYYl0MjI4Bin9GkFPUE3cpAARPCF27"/> |
| 25 | + <env name="CACHE_DRIVER" value="array"/> |
| 26 | + <env name="SESSION_DRIVER" value="array"/> |
| 27 | + <env name="QUEUE_DRIVER" value="sync"/> |
| 28 | + <env name="DB_DATABASE" value="laravel"/> |
| 29 | + <env name="DB_HOST" value="127.0.0.1"/> |
| 30 | + <env name="DB_PORT" value="3306"/> |
| 31 | + <env name="DB_USERNAME" value="root"/> |
| 32 | + <env name="DB_PASSWORD" value="root"/> |
| 33 | + </php> |
55 | 34 | </phpunit> |
0 commit comments