Skip to content

Commit

Permalink
Fix phpunit coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
zbateson committed Dec 23, 2024
1 parent 2d5c5ba commit 516f07f
Showing 1 changed file with 19 additions and 20 deletions.
39 changes: 19 additions & 20 deletions tests/phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="./bootstrap.php"
colors="true"
convertDeprecationsToExceptions="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="./bootstrap.php"
colors="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">../src/</directory>
</whitelist>
</filter>
<testsuites>
<testsuite name="MbWrapper">
<directory suffix="Test.php">MbWrapper</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">../src/</directory>
</include>
</coverage>

<testsuites>
<testsuite name="MbWrapper">
<directory suffix="Test.php">MbWrapper</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 516f07f

Please sign in to comment.