2019-12-24 01:52:07 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
|
2021-02-17 21:13:38 +01:00
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" colors="true" stopOnFailure="true" bootstrap="vendor/autoload.php">
|
2020-09-01 22:46:28 +02:00
|
|
|
<coverage processUncoveredFiles="true">
|
|
|
|
<include>
|
|
|
|
<directory>src</directory>
|
|
|
|
</include>
|
|
|
|
<exclude>
|
2021-02-23 13:06:12 +01:00
|
|
|
<!-- Internal -->
|
2020-09-01 22:46:28 +02:00
|
|
|
<file>src/preload.php</file>
|
|
|
|
<file>src/bootstrap.php</file>
|
|
|
|
<directory>src/Psl/Internal</directory>
|
2021-02-23 13:06:12 +01:00
|
|
|
|
|
|
|
<!-- Base Exceptions -->
|
2020-09-01 22:46:28 +02:00
|
|
|
<directory>src/Psl/Exception</directory>
|
2021-02-23 13:06:12 +01:00
|
|
|
|
|
|
|
<!-- Constants -->
|
2020-09-01 22:46:28 +02:00
|
|
|
<file>src/Psl/Str/constants.php</file>
|
|
|
|
<file>src/Psl/Math/constants.php</file>
|
2021-02-23 13:06:12 +01:00
|
|
|
<file>src/Psl/Filesystem/constants.php</file>
|
|
|
|
|
|
|
|
<!-- Things that are not easily tested -->
|
|
|
|
<file>src/Psl/Filesystem/get_group.php</file>
|
|
|
|
<file>src/Psl/Filesystem/change_group.php</file>
|
|
|
|
<file>src/Psl/Filesystem/Internal/change_group.php</file>
|
|
|
|
<file>src/Psl/Filesystem/get_owner.php</file>
|
|
|
|
<file>src/Psl/Filesystem/change_owner.php</file>
|
|
|
|
<file>src/Psl/Filesystem/Internal/change_owner.php</file>
|
2020-09-01 22:46:28 +02:00
|
|
|
</exclude>
|
|
|
|
<report>
|
|
|
|
<clover outputFile="tests/logs/clover.xml"/>
|
|
|
|
</report>
|
|
|
|
</coverage>
|
|
|
|
<php>
|
|
|
|
<ini name="error_reporting" value="-1"/>
|
|
|
|
</php>
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="PHP Standard Library">
|
|
|
|
<directory>tests/Psl</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<logging/>
|
2019-12-26 23:10:57 +01:00
|
|
|
</phpunit>
|