pulsebridge-gateway/phpunit.xml
Amit Kumar Nandi eb50f184b3 Initial Commit
2024-03-02 18:58:02 +05:30

25 lines
678 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="vendor/autoload.php"
backupGlobals="true" colors="true"
processIsolation="true" stopOnFailure="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd"
cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="Pulsebridge Test Suite">
<directory>src\test</directory>
</testsuite>
</testsuites>
<php>
<env name="APP_ENV" value="testing"/>
</php>
<source>
<include>
<directory suffix=".php">src/test/</directory>
</include>
</source>
</phpunit>