-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
phpunit.xml.dist
29 lines (28 loc) · 1.08 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="Tests/bootstrap.php" colors="false">
<php>
<env name="JOOMLA_TEST_DB_DRIVER" value="mysqli" />
<env name="JOOMLA_TEST_DB_HOST" value="mysqli" />
<env name="JOOMLA_TEST_DB_PORT" value="3306" />
<env name="JOOMLA_TEST_DB_USER" value="root" />
<env name="JOOMLA_TEST_DB_PASSWORD" value="" />
<env name="JOOMLA_TEST_DB_DATABASE" value="joomla_ut" />
<env name="JOOMLA_TEST_DB_PREFIX" value="" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
</php>
<testsuites>
<testsuite name="Unit">
<directory>Tests/Command</directory>
<directory>Tests/Monitor</directory>
<directory>Tests/Query</directory>
<directory>Tests/Service</directory>
<file>Tests/AbstractDatabaseDriverTestCase.php</file>
<file>Tests/DatabaseAwareTraitTest.php</file>
<file>Tests/DatabaseExporterTest.php</file>
<file>Tests/DatabaseFactoryTest.php</file>
<file>Tests/DatabaseImporterTest.php</file>
<file>Tests/DatabaseIteratorTest.php</file>
<file>Tests/DatabaseQueryTest.php</file>
</testsuite>
</testsuites>
</phpunit>