Skip to content

Commit

Permalink
Add missing phpunit config
Browse files Browse the repository at this point in the history
  • Loading branch information
codeliner committed Oct 15, 2017
1 parent 0582482 commit df0f44c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="vendor/autoload.php"
>
<testsuite name="Prooph Memcached Snapshot Store Test Suite">
<directory>./tests/</directory>
</testsuite>

<filter>
<whitelist>
<directory>./src/</directory>
</whitelist>
</filter>
</phpunit>

0 comments on commit df0f44c

Please sign in to comment.