You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
776 B
XML
24 lines
776 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- Copyright 1999-2021. Plesk International GmbH. -->
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="vendor/autoload.php" verbose="true" colors="true">
|
|
<coverage processUncoveredFiles="true">
|
|
<include>
|
|
<directory suffix=".php">./src</directory>
|
|
</include>
|
|
<report>
|
|
<clover outputFile="coverage.xml"/>
|
|
</report>
|
|
</coverage>
|
|
<testsuites>
|
|
<testsuite name="E2E">
|
|
<directory>./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<php>
|
|
<ini name="error_reporting" value="-1"/>
|
|
<env name="REMOTE_URL" value=""/>
|
|
<env name="REMOTE_PASSWORD" value=""/>
|
|
</php>
|
|
<logging/>
|
|
</phpunit>
|