24 lines
581 B
XML
24 lines
581 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
colors="true"
|
|
bootstrap="./vendor/autoload.php"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
failOnRisky="true"
|
|
stopOnError="true"
|
|
stopOnFailure="true"
|
|
stopOnIncomplete="true"
|
|
verbose="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Project Honeypot">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
|
<directory>./src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|