Skip to content

Commit

Permalink
Fix up phpunit config
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Jul 24, 2023
1 parent 0da2a72 commit 3f23bcc
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/bootstrap.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">src/</directory>
</include>
</coverage>
<php>
<!-- E_ALL => 32767 -->
<!-- E_ALL & ~E_USER_DEPRECATED => 16383 -->
<ini name="error_reporting" value="16383"/>
</php>
<testsuites>
<testsuite name="queue">
<directory>tests/TestCase/</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="Cake\TestSuite\Fixture\FixtureInjector">
<arguments>
<object class="Cake\TestSuite\Fixture\FixtureManager"/>
</arguments>
</listener>
</listeners>
<!-- Prevent coverage reports from looking in tests, vendors, config folders -->
<php>
<!-- E_ALL => 32767 -->
<!-- E_ALL & ~E_USER_DEPRECATED => 16383 -->
<ini name="error_reporting" value="16383"/>
</php>
<testsuites>
<testsuite name="queue">
<directory>tests/TestCase/</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="Cake\TestSuite\Fixture\FixtureInjector">
<arguments>
<object class="Cake\TestSuite\Fixture\FixtureManager"/>
</arguments>
</listener>
</listeners>
<!-- Prevent coverage reports from looking in tests, vendors, config folders -->
<coverage>
<include>
<directory suffix=".php">src/</directory>
</include>
</coverage>
</phpunit>

0 comments on commit 3f23bcc

Please sign in to comment.