-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
19 lines (19 loc) · 1.02 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="vendor/autoload.php" backupGlobals="false" backupStaticAttributes="false" colors="true" verbose="false" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" stopOnError="false" stderr="true">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">app</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Unit test for queue">
<directory suffix="Test.php">tests/Unit</directory>
</testsuite>
</testsuites>
<php>
<env name="APP_NAME" value="micro3-test"/>
<env name="DEBUG" value="true"/>
<env name="SENTRY_DSN" value=""/>
<env name="QUEUE_AMQP_DSN" value="amqp+rabbitmq+ext://guest:guest@php-microservice-rabbitmq-test:5672/test?heartbeat_on_tick=1"/>
</php>
</phpunit>