mirror of
https://github.com/wiosna-dev/common-library.git
synced 2026-03-12 01:31:45 +01:00
35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- https://phpunit.readthedocs.io/en/8.2/configuration.html -->
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/8.2/phpunit.xsd"
|
|
backupGlobals="false"
|
|
bootstrap="vendor/autoload.php"
|
|
colors="true"
|
|
executionOrder="random"
|
|
verbose="true"
|
|
>
|
|
<php>
|
|
<ini name="error_reporting" value="-1"/>
|
|
</php>
|
|
|
|
<testsuites>
|
|
<testsuite name="Meritoo Package - Main Test Suite">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory>src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
<logging>
|
|
<log type="coverage-html" target="build/reports/phpunit-coverage/html"/>
|
|
<log type="coverage-xml" target="build/reports/infection/coverage-xml"/>
|
|
<log type="junit" target="build/reports/infection/phpunit.junit.xml"/>
|
|
<log type="coverage-clover" target="build/reports/coveralls/clover.xml"/>
|
|
</logging>
|
|
</phpunit>
|