2024-03-20 13:46:56 -03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2024-11-12 21:51:56 -03:00
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.4/phpunit.xsd"
|
|
|
|
bootstrap="test.bootstrap.php"
|
|
|
|
cacheDirectory="/code/cache/tests"
|
|
|
|
executionOrder="depends,defects"
|
|
|
|
requireCoverageMetadata="false"
|
|
|
|
beStrictAboutCoverageMetadata="false"
|
|
|
|
beStrictAboutOutputDuringTests="true"
|
|
|
|
colors="true"
|
|
|
|
failOnRisky="false"
|
|
|
|
failOnWarning="false">
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="unit">
|
|
|
|
<directory>tests/unit</directory>
|
|
|
|
</testsuite>
|
|
|
|
<testsuite name="acceptance">
|
|
|
|
<directory>tests/integration</directory>
|
|
|
|
</testsuite>
|
|
|
|
<testsuite name="performance">
|
|
|
|
<directory>tests/performance</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<source restrictNotices="true" restrictWarnings="true" ignoreIndirectDeprecations="true">
|
|
|
|
<include>
|
|
|
|
<directory>src</directory>
|
|
|
|
<directory>common</directory>
|
|
|
|
</include>
|
|
|
|
</source>
|
|
|
|
<coverage pathCoverage="false" ignoreDeprecatedCodeUnits="true" disableCodeCoverageIgnore="true">
|
|
|
|
<report>
|
|
|
|
<html outputDirectory="/code/public/coverage/html"/>
|
|
|
|
<php outputFile="/code/public/coverage/coverage.php"/>
|
|
|
|
</report>
|
|
|
|
</coverage>
|
|
|
|
<logging>
|
|
|
|
<junit outputFile="/code/cache/tests/junit.xml"/>
|
|
|
|
<teamcity outputFile="/code/cache/tests/teamcity.txt"/>
|
|
|
|
<testdoxHtml outputFile="/code/cache/tests/testdox.html"/>
|
|
|
|
<testdoxText outputFile="/code/cache/tests/testdox.txt"/>
|
|
|
|
</logging>
|
2024-03-20 13:46:56 -03:00
|
|
|
</phpunit>
|