Skip to content

Commit

Permalink
addding phpunit.xml.dist
Browse files Browse the repository at this point in the history
  • Loading branch information
nilportugues committed Jan 26, 2016
1 parent 513fd61 commit 26dda4a
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit cacheTokens="false"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
syntaxCheck="true"
bootstrap="vendor/autoload.php"
verbose="true">

<php>
<ini name="intl.default_locale" value="en_US.UTF-8" />
<ini name="intl.error_level" value="0" />
<ini name="memory_limit" value="-1" />
<ini name="max_execution_time" value="-1"/>
<ini name="date.timezone" value="Europe/Madrid" />
<ini name="error_reporting" value="E_ALL" />
</php>


<testsuites>
<testsuite name="Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>

<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./example/</directory>
<directory>./vendor/</directory>
<directory>./tests/</directory>
</exclude>
</whitelist>
</filter>

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

0 comments on commit 26dda4a

Please sign in to comment.