Skip to content

Commit

Permalink
Fix: Migrate configuration for phpunit/phpunit
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Jun 30, 2023
1 parent 965f42f commit 0a1a7aa
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions test/Unit/phpunit.xml
@@ -1,32 +1,28 @@
<?xml version="1.0"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../../vendor/phpunit/phpunit/phpunit.xsd"
beStrictAboutChangesToGlobalState="true"
beStrictAboutCoversAnnotation="true"
beStrictAboutCoverageMetadata="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutResourceUsageDuringSmallTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutTodoAnnotatedTests="true"
bootstrap="../../vendor/autoload.php"
cacheDirectory="../../.build/phpunit/unit/"
cacheResult="true"
cacheResultFile="../../.build/phpunit/unit.cache"
colors="true"
columns="max"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
executionOrder="random"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
verbose="true"
>
<coverage includeUncoveredFiles="true" processUncoveredFiles="true">
<coverage includeUncoveredFiles="true"/>
<source>
<include>
<directory suffix=".php">../../src/</directory>
</include>
</coverage>
</source>
<testsuites>
<testsuite name="Unit Tests">
<directory>.</directory>
Expand Down

0 comments on commit 0a1a7aa

Please sign in to comment.