endtoend-test-psl/phpunit.xml.dist

36 lines
1.1 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 19:11:35 +01:00
<testsuite name="Psl Random">
<directory>tests/Psl/Random</directory>
</testsuite>
2019-12-25 22:45:52 +01:00
<testsuite name="Psl Collection">
<directory>tests/Psl/Collection</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>
</whitelist>
</filter>
</phpunit>