endtoend-test-psl/phpunit.xml.dist

44 lines
1.5 KiB
Plaintext
Raw Normal View History

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>
<!-- Internal -->
2020-09-01 22:46:28 +02:00
<file>src/preload.php</file>
<file>src/bootstrap.php</file>
<directory>src/Psl/Internal</directory>
<!-- Base Exceptions -->
2020-09-01 22:46:28 +02:00
<directory>src/Psl/Exception</directory>
<!-- Constants -->
2020-09-01 22:46:28 +02:00
<file>src/Psl/Str/constants.php</file>
<file>src/Psl/Math/constants.php</file>
<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>