Skip to content

Commit 1052d5a

Browse files
committed
Update phpunit.xml configurations
1 parent 1db425b commit 1052d5a

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

phpunit.xml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
1+
<?xml version="1.0" encoding="UTF-8" ?>
22
<phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false">
33
<testsuites>
4+
<testsuite name="App">
5+
<directory suffix="Test.php">./tests/app</directory>
6+
</testsuite>
7+
48
<testsuite name="Unit">
59
<directory suffix="Test.php">./tests/Unit</directory>
610
</testsuite>
@@ -15,11 +19,11 @@
1519
</whitelist>
1620
</filter>
1721
<php>
18-
<server name="APP_ENV" value="testing"/>
19-
<server name="BCRYPT_ROUNDS" value="4"/>
20-
<server name="CACHE_DRIVER" value="array"/>
21-
<server name="MAIL_DRIVER" value="array"/>
22-
<server name="QUEUE_CONNECTION" value="sync"/>
23-
<server name="SESSION_DRIVER" value="array"/>
22+
<server name="APP_ENV" value="testing" />
23+
<server name="BCRYPT_ROUNDS" value="4" />
24+
<server name="CACHE_DRIVER" value="array" />
25+
<server name="MAIL_DRIVER" value="array" />
26+
<server name="QUEUE_CONNECTION" value="sync" />
27+
<server name="SESSION_DRIVER" value="array" />
2428
</php>
2529
</phpunit>

0 commit comments

Comments
 (0)