18 строки
541 B
XML
18 строки
541 B
XML
<?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.unit.xml"/>
|
|
</report>
|
|
</coverage>
|
|
<testsuite name="Tasks app tests">
|
|
<directory>./tests/php/unit</directory>
|
|
</testsuite>
|
|
</phpunit>
|