atdc/phpunit.xml.dist

15 lines
519 B
Plaintext
Raw Normal View History

2023-12-25 21:55:39 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="web/core/tests/bootstrap.php" colors="true">
<php>
<env name="SIMPLETEST_BASE_URL" value="http://localhost:9000"/>
2023-12-25 21:55:39 +00:00
<env name="SIMPLETEST_DB" value="sqlite://localhost//dev/shm/test.sqlite"/>
<ini name="error_reporting" value="32767"/>
<ini name="memory_limit" value="-1"/>
</php>
<testsuites>
<testsuite name="Example tests">
<directory suffix="Test.php">./web/modules/**</directory>
</testsuite>
</testsuites>
</phpunit>