Skip to content

Commit

Permalink
Fixed phpunit configuration warning with phpunit --migrate-configurat…
Browse files Browse the repository at this point in the history
…ion.
  • Loading branch information
steve-todorov committed Aug 10, 2020
1 parent 2fae216 commit bfced84
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit backupGlobals="false"
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="vendor/autoload.php"
>
<testsuites>
<testsuite name="Detailed result printer for PHPUnit Test Suite">
<directory suffix=".phpt">./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src</directory>
</whitelist>
</filter>
bootstrap="vendor/autoload.php">
<coverage>
<include>
<directory>./src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Detailed result printer for PHPUnit Test Suite">
<directory suffix=".phpt">./tests/</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit bfced84

Please sign in to comment.