Skip to content

Commit

Permalink
Migrate PHPUnit configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbrodie committed Feb 11, 2024
1 parent c509bda commit 1eae83e
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions phpunit.xml
@@ -1,18 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" backupGlobals="false" bootstrap="./vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true">
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
<report>
<html outputDirectory="./test/unit/_html" />
</report>
</coverage>
<testsuites>
<testsuite name="Unit">
<directory>./test/unit</directory>
</testsuite>
</testsuites>
<logging/>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" backupGlobals="false" bootstrap="./vendor/autoload.php" colors="true" cacheDirectory=".phpunit.cache">
<coverage>
<report>
<html outputDirectory="./test/unit/_html"/>
</report>
</coverage>
<testsuites>
<testsuite name="Unit">
<directory>./test/unit</directory>
</testsuite>
</testsuites>
<logging/>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>

0 comments on commit 1eae83e

Please sign in to comment.