Skip to content

Commit

Permalink
migrate phpunit config
Browse files Browse the repository at this point in the history
  • Loading branch information
svnldwg committed Oct 29, 2020
1 parent 46c50d4 commit 35cf80c
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions test/Integration/phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../../vendor/phpunit/phpunit/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
beStrictAboutChangesToGlobalState="true"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
Expand All @@ -20,14 +21,14 @@
stopOnSkipped="false"
verbose="true"
>
<testsuites>
<testsuite name="Integration Tests">
<directory>.</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true" processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">../../src/</directory>
</whitelist>
</filter>
</phpunit>
<coverage includeUncoveredFiles="true" processUncoveredFiles="true">
<include>
<directory suffix=".php">../../src/</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Integration Tests">
<directory>.</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 35cf80c

Please sign in to comment.