Skip to content
This repository has been archived by the owner on Jan 9, 2019. It is now read-only.

Commit

Permalink
Moved phpunit configuration file into root folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Timo committed May 21, 2015
1 parent 99c5636 commit 90e5db0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<phpunit bootstrap="./tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
verbose="true"
stopOnFailure="false"
processIsolation="false"
backupGlobals="false"
syntaxCheck="true"
>
<testsuite name="tteMaintenance Test Suite">
<directory>./tests/tteMaintenanceTest</directory>
</testsuite>


<filter>
<whitelist>
<directory suffix=".php">./src</directory>
</whitelist>
</filter>

<logging>
<log type="coverage-text" target="php://stdout"/>
<log type="coverage-clover" target="./build/logs/clover.xml"/>
<log type="coverage-html" target="./build/logs/unittest.html"/>
</logging>
</phpunit>

0 comments on commit 90e5db0

Please sign in to comment.