Skip to content

Commit

Permalink
Add phpunit config.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasongrimes committed Sep 28, 2014
1 parent b7035e0 commit 938722c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions phpunit.xml.dist
@@ -0,0 +1,18 @@
<?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"
>
<testsuites>
<testsuite name="Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 938722c

Please sign in to comment.