12345678910111213141516171819202122232425262728293031 |
- <?xml version="1.0" encoding="UTF-8"?>
- <phpunit backupGlobals="false"
- backupStaticAttributes="false"
- bootstrap="bootstrap/app.php"
- colors="true"
- convertErrorsToExceptions="true"
- convertNoticesToExceptions="true"
- convertWarningsToExceptions="true"
- processIsolation="false"
- stopOnFailure="false"
- syntaxCheck="true">
- <testsuites>
- <testsuite name="ss-panel Test Suite">
- <directory>./tests/</directory>
- </testsuite>
- </testsuites>
- <filter>
- <whitelist>
- <directory suffix=".php">app/</directory>
- </whitelist>
- </filter>
- <php>
- <env name="APP_ENV" value="testing"/>
- </php>
- <logging>
- <log type="coverage-html" target="build/coverage"/>
- <log type="coverage-clover" target="build/logs/clover.xml"/>
- <log type="coverage-crap4j" target="build/logs/crap4j.xml"/>
- <log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
- </logging>
- </phpunit>
|