mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-15 02:56:09 +01:00
27 lines
634 B
Text
27 lines
634 B
Text
|
<phpunit
|
||
|
backupGlobals="false"
|
||
|
backupStaticAttributes="false"
|
||
|
colors="true"
|
||
|
convertErrorsToExceptions="false"
|
||
|
convertWarningsToExceptions="false"
|
||
|
forceCoversAnnotation="false"
|
||
|
processIsolation="false"
|
||
|
stopOnError="false"
|
||
|
stopOnFailure="false"
|
||
|
stopOnIncomplete="false"
|
||
|
stopOnSkipped="false"
|
||
|
verbose="false">
|
||
|
|
||
|
<testsuites>
|
||
|
<testsuite name="unit-tests">
|
||
|
<directory>Tests/Unit/</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
|
||
|
<filter>
|
||
|
<whitelist>
|
||
|
<directory suffix=".php">Classes</directory>
|
||
|
</whitelist>
|
||
|
</filter>
|
||
|
</phpunit>
|