29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-17 01:22:48 +00:00
cms/phpunit-pgsql.xml.dist
2022-08-25 11:34:08 -04:00

19 lines
619 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/Unit/bootstrap.php" colors="false">
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Integration">
<directory suffix="Test.php">./tests/Integration</directory>
</testsuite>
</testsuites>
<php>
<const name="JTEST_DB_ENGINE" value="pgsql" />
<const name="JTEST_DB_HOST" value="postgres" />
<const name="JTEST_DB_NAME" value="test_joomla" />
<const name="JTEST_DB_USER" value="root" />
<const name="JTEST_DB_PASSWORD" value="joomla_ut" />
</php>
</phpunit>