|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<phpunit |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - backupGlobals="false" |
5 | | - backupStaticAttributes="false" |
6 | | - bootstrap="bootstrap/tests.php" |
7 | | - colors="true" |
8 | | - convertErrorsToExceptions="true" |
9 | | - convertNoticesToExceptions="true" |
10 | | - convertWarningsToExceptions="true" |
11 | | - printerClass="NunoMaduro\Collision\Adapters\Phpunit\Printer" |
12 | | - processIsolation="false" |
13 | | - stopOnFailure="false" |
14 | | - xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd" |
| 4 | + bootstrap="bootstrap/tests.php" |
| 5 | + colors="true" |
| 6 | + printerClass="NunoMaduro\Collision\Adapters\Phpunit\Printer" |
15 | 7 | > |
16 | 8 | <coverage processUncoveredFiles="true"> |
17 | 9 | <include> |
18 | 10 | <directory suffix=".php">./app</directory> |
19 | 11 | </include> |
20 | 12 | </coverage> |
21 | 13 | <testsuites> |
22 | | - <testsuite name="Browser"> |
23 | | - <directory suffix="Test.php">./tests/Browser/Processes</directory> |
24 | | - </testsuite> |
25 | 14 | <testsuite name="Integration"> |
26 | | - <directory suffix="Test.php">./tests/Integration</directory> |
| 15 | + <directory>./tests/Integration</directory> |
27 | 16 | </testsuite> |
28 | 17 | <testsuite name="Unit"> |
29 | | - <directory suffix="Test.php">./tests/Unit</directory> |
| 18 | + <directory>./tests/Unit</directory> |
30 | 19 | </testsuite> |
31 | 20 | </testsuites> |
32 | 21 | <php> |
33 | 22 | <env name="APP_ENV" value="testing"/> |
34 | 23 | <env name="BCRYPT_ROUNDS" value="4"/> |
35 | | - <env name="DB_CONNECTION" value="testing"/> |
| 24 | + <env name="DB_CONNECTION" value="mysql"/> |
| 25 | + <env name="DB_DATABASE" value="panel_test"/> |
36 | 26 | <env name="CACHE_DRIVER" value="array"/> |
37 | 27 | <env name="SESSION_DRIVER" value="array"/> |
38 | 28 | <env name="QUEUE_CONNECTION" value="sync"/> |
|
0 commit comments