Skip to content

Commit

Permalink
Migrate configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
prwater committed Jan 26, 2023
1 parent 33c23c5 commit 7f6e77a
Showing 1 changed file with 20 additions and 18 deletions.
38 changes: 20 additions & 18 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
<phpunit bootstrap="test/bootstrap.php">
<testsuites>
<testsuite name="Tests">
<directory>test</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<exclude>
<directory suffix=".php">vendor/setbased</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="test/report"/>
<log type="coverage-clover" target="test/coverage.xml"/>
</logging>
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="test/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory suffix=".php">vendor/setbased</directory>
</exclude>
<report>
<clover outputFile="test/coverage.xml"/>
<html outputDirectory="test/report"/>
</report>
</coverage>
<testsuites>
<testsuite name="Tests">
<directory>test</directory>
</testsuite>
</testsuites>
<logging/>
</phpunit>

0 comments on commit 7f6e77a

Please sign in to comment.