deployer/phpunit.xml
2017-02-24 23:53:31 +07:00

31 lines
933 B
XML

<phpunit bootstrap="test/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
syntaxCheck="true"
verbose="true"
>
<testsuites>
<testsuite name="Source">
<directory>test/src/</directory>
</testsuite>
<testsuite name="Recipes">
<directory>test/recipe/</directory>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory suffix=".php">vendor/</directory>
<directory>bin/</directory>
<directory>src/Resources/</directory>
</blacklist>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory>src/</directory>
<directory>recipe/</directory>
</whitelist>
</filter>
</phpunit>