2019-12-24 01:52:07 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
|
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/8.5/phpunit.xsd"
|
|
|
|
colors="true"
|
2019-12-25 19:39:01 +01:00
|
|
|
stopOnFailure="true"
|
2019-12-24 01:52:07 +01:00
|
|
|
bootstrap="vendor/autoload.php"
|
|
|
|
>
|
|
|
|
<php>
|
2019-12-25 00:35:14 +01:00
|
|
|
<ini name="error_reporting" value="-1"/>
|
2019-12-24 01:52:07 +01:00
|
|
|
</php>
|
|
|
|
|
|
|
|
<testsuites>
|
2020-07-16 17:11:54 +02:00
|
|
|
<testsuite name="PHP Standard Library">
|
|
|
|
<directory>tests/Psl</directory>
|
2019-12-26 23:10:57 +01:00
|
|
|
</testsuite>
|
2019-12-24 01:52:07 +01:00
|
|
|
</testsuites>
|
|
|
|
|
2019-12-25 19:39:01 +01:00
|
|
|
<logging>
|
2019-12-25 19:51:05 +01:00
|
|
|
<log type="coverage-clover" target="tests/logs/clover.xml"/>
|
2019-12-25 19:39:01 +01:00
|
|
|
</logging>
|
|
|
|
|
2019-12-24 01:52:07 +01:00
|
|
|
<filter>
|
2019-12-25 19:39:01 +01:00
|
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
2019-12-24 01:52:07 +01:00
|
|
|
<directory>src</directory>
|
2019-12-26 21:03:29 +01:00
|
|
|
<exclude>
|
2020-03-01 17:53:52 +01:00
|
|
|
<file>src/preload.php</file>
|
2019-12-26 21:03:29 +01:00
|
|
|
<file>src/bootstrap.php</file>
|
2020-03-01 17:53:52 +01:00
|
|
|
<directory>src/Psl/Internal</directory>
|
2020-09-01 07:53:00 +02:00
|
|
|
<directory>src/Psl/Exception</directory>
|
2019-12-26 21:03:29 +01:00
|
|
|
<file>src/Psl/Str/constants.php</file>
|
|
|
|
<file>src/Psl/Math/constants.php</file>
|
|
|
|
</exclude>
|
2019-12-24 01:52:07 +01:00
|
|
|
</whitelist>
|
|
|
|
</filter>
|
2019-12-26 23:10:57 +01:00
|
|
|
</phpunit>
|