2018-09-21 10:28:46 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-11-09 13:45:37 -06:00
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.5/phpunit.xsd"
|
2018-09-21 10:28:46 -05:00
|
|
|
bootstrap="./tests/bootstrap.php"
|
|
|
|
|
colors="true"
|
|
|
|
|
forceCoversAnnotation="true"
|
|
|
|
|
beStrictAboutCoversAnnotation="true"
|
|
|
|
|
beStrictAboutOutputDuringTests="true"
|
|
|
|
|
beStrictAboutTodoAnnotatedTests="true"
|
|
|
|
|
verbose="true">
|
|
|
|
|
<testsuites>
|
|
|
|
|
<testsuite name="default">
|
|
|
|
|
<directory suffix="Test.php">tests</directory>
|
|
|
|
|
</testsuite>
|
|
|
|
|
</testsuites>
|
|
|
|
|
|
|
|
|
|
<filter>
|
|
|
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
2019-04-01 15:17:27 -05:00
|
|
|
<directory suffix=".php">includes</directory>
|
2018-09-21 10:28:46 -05:00
|
|
|
</whitelist>
|
|
|
|
|
</filter>
|
|
|
|
|
</phpunit>
|