Skip to content

Commit ea5b087

Browse files
committed
config format
1 parent 6e78b31 commit ea5b087

File tree

1 file changed

+23
-25
lines changed

1 file changed

+23
-25
lines changed

phpunit.xml.dist

Lines changed: 23 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,25 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false"
3-
beStrictAboutTestsThatDoNotTestAnything="false" bootstrap="vendor/autoload.php" colors="true"
4-
convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true"
5-
processIsolation="false" stopOnError="false" stopOnFailure="false" verbose="true"
6-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
7-
<coverage>
8-
<include>
9-
<directory suffix=".php">src/</directory>
10-
</include>
11-
<report>
12-
<html outputDirectory="build/coverage"/>
13-
</report>
14-
</coverage>
15-
<testsuites>
16-
<testsuite name="Package Test Suite">
17-
<directory suffix=".php">./tests/</directory>
18-
</testsuite>
19-
</testsuites>
20-
<php>
21-
<env name="HOST" value="127.0.0.1"/>
22-
<env name="PORT" value="5672"/>
23-
<env name="PORT_SSL" value="5671"/>
24-
<env name="RABBITMQ_SSL_CAFILE" value="./tests/files/rootCA.pem"/>
25-
</php>
26-
<logging/>
2+
<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">
3+
<coverage>
4+
<report>
5+
<html outputDirectory="build/coverage"/>
6+
</report>
7+
</coverage>
8+
<testsuites>
9+
<testsuite name="Package Test Suite">
10+
<directory suffix=".php">./tests/</directory>
11+
</testsuite>
12+
</testsuites>
13+
<php>
14+
<env name="HOST" value="127.0.0.1"/>
15+
<env name="PORT" value="5672"/>
16+
<env name="PORT_SSL" value="5671"/>
17+
<env name="RABBITMQ_SSL_CAFILE" value="./tests/files/rootCA.pem"/>
18+
</php>
19+
<logging/>
20+
<source>
21+
<include>
22+
<directory suffix=".php">src/</directory>
23+
</include>
24+
</source>
2725
</phpunit>

0 commit comments

Comments
 (0)