MaketRandevu/phpunit.xml

17 lines
450 B
XML
Raw Normal View History

2016-11-09 21:55:56 +03:00
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
2018-11-03 18:29:03 +03:00
cacheResult="false"
>
2021-11-06 19:17:30 +03:00
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<php>
<server name="APP_ENV" value="testing"/>
</php>
</phpunit>