psalm-plugin-symfony/phpunit.xml

22 lines
712 B
XML
Raw Permalink Normal View History

2020-03-10 17:00:55 +01:00
<?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"
2020-03-10 17:00:55 +01:00
bootstrap="vendor/autoload.php"
forceCoversAnnotation="false"
2020-03-10 17:00:55 +01:00
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
verbose="true"
>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="default">
<directory suffix="Test.php">tests/unit</directory>
</testsuite>
</testsuites>
2020-03-10 17:00:55 +01:00
</phpunit>