2024-02-07 11:00:08 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false" displayDetailsOnTestsThatTriggerWarnings="true">
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Backupscript Test Suite">
|
|
|
|
<directory>./tests/</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<source>
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">src/</directory>
|
|
|
|
</include>
|
|
|
|
</source>
|
|
|
|
<logging>
|
|
|
|
<junit outputFile="output/test/junit.xml"/>
|
|
|
|
<testdoxHtml outputFile="output/test/index.html"/>
|
|
|
|
</logging>
|
2023-11-03 13:29:50 +00:00
|
|
|
|
2024-02-07 11:00:08 +00:00
|
|
|
<coverage>
|
|
|
|
<report>
|
|
|
|
<html outputDirectory="output/coverage" />
|
|
|
|
<clover outputFile ="output/coverage/clover.xml" />
|
|
|
|
</report>
|
|
|
|
</coverage>
|
2023-11-03 13:29:50 +00:00
|
|
|
</phpunit>
|