2022-10-18 22:18:12 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
bootstrap="tests/php/bootstrap.php"
|
|
|
|
verbose="true"
|
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
|
|
|
|
<coverage>
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">./lib</directory>
|
|
|
|
</include>
|
|
|
|
<report>
|
|
|
|
<clover outputFile="./clover.integration.xml"/>
|
|
|
|
</report>
|
|
|
|
</coverage>
|
|
|
|
<testsuite name="Tasks app integration tests">
|
|
|
|
<directory>./tests/php/integration</directory>
|
|
|
|
</testsuite>
|
2019-07-17 22:10:14 +03:00
|
|
|
</phpunit>
|