Updated phpunit configuration

This commit is contained in:
Ismo Vuorinen
2022-06-26 18:46:35 +03:00
parent ec34171c66
commit dca55f5fa2

View File

@@ -1,22 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false" <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
backupStaticAttributes="false" <coverage processUncoveredFiles="true">
colors="true" <include>
convertErrorsToExceptions="true" <directory>./src/</directory>
convertNoticesToExceptions="true" </include>
convertWarningsToExceptions="true" </coverage>
processIsolation="false" <testsuites>
stopOnFailure="false" <testsuite name="Test Suite">
bootstrap="vendor/autoload.php" <directory suffix="Test.php">./tests</directory>
> </testsuite>
<testsuites> </testsuites>
<testsuite name="Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory>./src/</directory>
</whitelist>
</filter>
</phpunit> </phpunit>