endtoend-test-psl/phpunit.xml.dist

48 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 -->
<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"/>
<server name="APP_ENV" value="test" force="true"/>
2019-12-24 01:52:07 +01:00
</php>
<testsuites>
2019-12-25 00:35:14 +01:00
<testsuite name="Psl Arr">
<directory>tests/Psl/Arr</directory>
2019-12-24 01:52:07 +01:00
</testsuite>
2019-12-25 22:45:52 +01:00
<testsuite name="Psl Collection">
<directory>tests/Psl/Collection</directory>
</testsuite>
2019-12-26 21:03:29 +01:00
<testsuite name="Psl Math">
<directory>tests/Psl/Math</directory>
</testsuite>
<testsuite name="Psl Random">
<directory>tests/Psl/Random</directory>
</testsuite>
2019-12-26 23:10:57 +01:00
<testsuite name="Psl Str">
<directory>tests/Psl/Str</directory>
</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>
<file>src/bootstrap.php</file>
<file>src/Psl/internal.php</file>
<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>
</phpunit>