Skip to content

Commit

Permalink
fixed phpunit configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici authored Mar 16, 2023
1 parent 4caff6a commit c4b6d6b
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,26 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
<phpunit bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
verbose="true"
backupGlobals="false"
backupStaticProperties="false"
>
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Package Test Suite">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<php>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
Expand Down

0 comments on commit c4b6d6b

Please sign in to comment.