mirror of
https://github.com/wiosna-dev/common-library.git
synced 2026-03-12 17:41:50 +01:00
36 lines
1.1 KiB
XML
36 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- https://phpunit.readthedocs.io/en/8.0/ -->
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.0/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>
|