2022-09-16 07:17:51 +10:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2023-06-14 21:21:17 +02:00
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
|
2023-01-18 23:59:08 +10:00
|
|
|
<coverage>
|
|
|
|
<report>
|
|
|
|
<clover outputFile="build/logs/clover.xml"/>
|
|
|
|
<html outputDirectory="build/coverage"/>
|
|
|
|
<text outputFile="build/coverage.txt"/>
|
|
|
|
</report>
|
|
|
|
</coverage>
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="cerbero90 Test Suite">
|
|
|
|
<directory>tests</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<logging>
|
|
|
|
<junit outputFile="build/report.junit.xml"/>
|
|
|
|
</logging>
|
2023-06-14 21:21:17 +02:00
|
|
|
<source>
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">src/</directory>
|
|
|
|
</include>
|
|
|
|
</source>
|
2022-09-16 07:17:51 +10:00
|
|
|
</phpunit>
|