Skip to content

Commit

Permalink
Move phpunit configuration to root directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Internet Quality committed Mar 29, 2020
1 parent 1f68367 commit f22d11d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 27 deletions.
27 changes: 27 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.0/phpunit.xsd"
colors="true"
backupGlobals="false"
bootstrap="vendor/autoload.php"
stderr="true"
>

<filter>
<whitelist>
<directory>src</directory>
</whitelist>
</filter>

<logging>
<log type="coverage-html" target="build/coverage/html/"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>

<testsuites>
<testsuite name="Unit tests">
<directory suffix=".php">tests/</directory>
</testsuite>
</testsuites>

</phpunit>
27 changes: 0 additions & 27 deletions tests/phpunit.xml

This file was deleted.

0 comments on commit f22d11d

Please sign in to comment.