Skip to content

Commit

Permalink
Add phpunit config
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Miertsch committed Aug 30, 2015
1 parent 855eedb commit 8e3c07f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?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 EventStore ServiceBus Bridge Test Suite">
<directory>./tests</directory>
</testsuite>

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

0 comments on commit 8e3c07f

Please sign in to comment.