Skip to content

Commit

Permalink
Migrate configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasnoback committed Oct 19, 2020
1 parent 2280b2f commit aee7e9c
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="test">
<directory>./test</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src</directory>
</whitelist>
</filter>
</phpunit>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory>./src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="test">
<directory>./test</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit aee7e9c

Please sign in to comment.