You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
|
3 months ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.5/phpunit.xsd"
|
||
|
|
bootstrap="../../tests/bootstrap.php"
|
||
|
|
cacheDirectory=".phpunit.cache"
|
||
|
|
executionOrder="depends,defects"
|
||
|
|
requireCoverageMetadata="true"
|
||
|
|
beStrictAboutCoverageMetadata="true"
|
||
|
|
beStrictAboutOutputDuringTests="true"
|
||
|
|
displayDetailsOnPhpunitDeprecations="true"
|
||
|
|
failOnPhpunitDeprecation="true"
|
||
|
|
failOnRisky="true"
|
||
|
|
failOnWarning="true">
|
||
|
|
<testsuites>
|
||
|
|
<testsuite name="Unit tests">
|
||
|
|
<directory>tests/unit/lib</directory>
|
||
|
|
</testsuite>
|
||
|
|
<testsuite name="Integration tests">
|
||
|
|
<directory>tests/integration/lib</directory>
|
||
|
|
</testsuite>
|
||
|
|
</testsuites>
|
||
|
|
|
||
|
|
<source ignoreIndirectDeprecations="true" restrictNotices="true" restrictWarnings="true">
|
||
|
|
<include>
|
||
|
|
<directory>lib</directory>
|
||
|
|
</include>
|
||
|
|
</source>
|
||
|
|
</phpunit>
|