Skip to content

Commit

Permalink
New PHPUnit configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdebril committed Mar 8, 2021
1 parent aa77a41 commit 1651259
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit bootstrap="tests/bootstrap.php" colors="true">
<testsuites>
<testsuite name="feed-io Test Suite">
<directory>tests/FeedIo/</directory>
</testsuite>
</testsuites>

<filter>
<whitelist>
<directory suffix=".php">src/FeedIo/</directory>
</whitelist>
</filter>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/bootstrap.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">src/FeedIo/</directory>
</include>
</coverage>
<testsuites>
<testsuite name="feed-io Test Suite">
<directory>tests/FeedIo/</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 1651259

Please sign in to comment.