mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-16 18:56:06 +01:00
25 lines
784 B
XML
25 lines
784 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
|
bootstrap="vendor/autoload.php"
|
|
executionOrder="depends,defects"
|
|
forceCoversAnnotation="false"
|
|
beStrictAboutCoversAnnotation="false"
|
|
beStrictAboutOutputDuringTests="true"
|
|
beStrictAboutTodoAnnotatedTests="true"
|
|
verbose="true">
|
|
<coverage processUncoveredFiles="true">
|
|
<include>
|
|
<directory suffix=".php">src</directory>
|
|
</include>
|
|
</coverage>
|
|
<php>
|
|
<const name="FIXTURE_DIR" value="./tests/fixtures" />
|
|
</php>
|
|
<testsuites>
|
|
<testsuite name="default">
|
|
<directory suffix="Test.php">tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|