DIContainer/tests/phpunit.xml

35 lines
1.2 KiB
XML
Raw Normal View History

2024-01-31 19:24:51 +01:00
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="true"
2024-06-16 00:01:06 +02:00
bootstrap="../../../../source/bootstrap.php"
2024-01-31 19:24:51 +01:00
colors="false"
2024-06-16 00:01:06 +02:00
backupStaticAttributes="false"
2024-01-31 19:24:51 +01:00
convertErrorsToExceptions="true"
convertNoticesToExceptions="false"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
2024-06-16 00:01:06 +02:00
beStrictAboutTestsThatDoNotTestAnything="false"
2024-01-31 19:24:51 +01:00
verbose="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
2024-06-16 00:01:06 +02:00
<testsuites>
<testsuite name="Unit">
<directory>unit/</directory>
</testsuite>
</testsuites>
2024-01-31 19:24:51 +01:00
<coverage includeUncoveredFiles="true" processUncoveredFiles="true">
<include>
<directory suffix=".php">../</directory>
</include>
2024-05-27 13:41:52 +02:00
<exclude>
<directory suffix=".php">./</directory>
<file>../rector.php</file>
<file>../.php-cs-fixer.php</file>
</exclude>
2024-01-31 19:24:51 +01:00
</coverage>
</phpunit>