Skip to content

Commit

Permalink
fixie
Browse files Browse the repository at this point in the history
  • Loading branch information
khepin committed Mar 13, 2024
1 parent 75fa317 commit dd97e4b
Showing 1 changed file with 23 additions and 25 deletions.
48 changes: 23 additions & 25 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,27 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false"
beStrictAboutTestsThatDoNotTestAnything="false" bootstrap="vendor/autoload.php" colors="true"
convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true"
processIsolation="false" stopOnError="false" stopOnFailure="false" verbose="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix="Test.php">src/</directory>
</include>
<report>
<html outputDirectory="build/coverage"/>
</report>
</coverage>
<testsuites>
<testsuite name="Package Test Suite">
<directory suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
<php>
<env name="HOST" value="127.0.0.1"/>
<env name="PORT" value="5672"/>
<env name="PORT_SSL" value="5671"/>
<env name="RABBITMQ_SSL_CAFILE" value="./tests/files/rootCA.pem"/>
</php>
<logging/>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" beStrictAboutTestsThatDoNotTestAnything="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnError="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<coverage>
<report>
<html outputDirectory="build/coverage"/>
</report>
</coverage>
<testsuites>
<testsuite name="Package Test Suite">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
<php>
<env name="HOST" value="127.0.0.1"/>
<env name="PORT" value="5672"/>
<env name="PORT_SSL" value="5671"/>
<env name="RABBITMQ_SSL_CAFILE" value="./tests/files/rootCA.pem"/>
</php>
<logging/>
<source>
<include>
<directory suffix="Test.php">src/</directory>
</include>
</source>
</phpunit>

0 comments on commit dd97e4b

Please sign in to comment.