Skip to content

Commit

Permalink
Migrated PHPUnit configuration to newer format
Browse files Browse the repository at this point in the history
  • Loading branch information
XedinUnknown committed Apr 26, 2024
1 parent 6b0fb67 commit 507ae66
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
colors="true"
bootstrap="tests/bootstrap.php"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<php>
<ini name="display_errors" value="1" />
<ini name="display_startup_errors" value="1" />
<ini name="display_errors" value="1"/>
<ini name="display_startup_errors" value="1"/>
</php>
<testsuites>
<testsuite name="functional">
Expand All @@ -18,9 +25,4 @@
<directory>tests/system</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
</phpunit>

0 comments on commit 507ae66

Please sign in to comment.