pulsebridge-gateway/phpunit.xml

26 lines
678 B
XML
Raw Normal View History

2024-03-02 18:58:02 +05:30
<?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>