Skip to content

Commit

Permalink
Add PHPUnit configuration for code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
robbieaverill committed Jan 13, 2017
1 parent 0c18805 commit 655018f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<phpunit
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true">
<testsuites>
<testsuite name="robbie-psr7">
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<exclude />
</whitelist>
</filter>
</phpunit>

0 comments on commit 655018f

Please sign in to comment.