Daniel Siepmann
b23ee6ef8b
* Allow phpcbf / diff to be optional, as not all tests are fixable. * Provide more information in case of error. * Provide phpunit dist to run phpunit without anything special. Relates: #46
23 lines
626 B
XML
23 lines
626 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false">
|
|
|
|
<testsuites>
|
|
<testsuite name="Project Test Suite">
|
|
<directory>./tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory>./src/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|