tikiwiki/packages/tiki-pkg-mpdf/setasign/fpdi/phpunit.xml

30 lines
1.0 KiB
XML
Raw Normal View History

2023-11-20 21:52:04 +01:00
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.7/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="./tests/bootstrap.php">
<php>
<!--Path to the autoload file that should be used. Use a composer autoloader by default-->
<const name="AUTOLOAD_PATH" value="./vendor/autoload.php"/>
</php>
<testsuites>
<testsuite name="Unit Tests">
<directory>./tests/unit</directory>
</testsuite>
<testsuite name="Functional Tests">
<directory>./tests/functional</directory>
</testsuite>
<testsuite name="Visual Tests">
<directory>./tests/visual</directory>
</testsuite>
</testsuites>
</phpunit>