2013-11-03 21:58:05 -06:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit backupGlobals="true"
|
2016-07-24 17:17:41 +02:00
|
|
|
backupStaticAttributes="false"
|
2013-11-03 21:58:05 -06:00
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
verbose="true"
|
|
|
|
bootstrap="../tests/bootstrap.php">
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="phpBB Test Suite">
|
2014-05-03 10:28:15 +02:00
|
|
|
<directory suffix="_test.php">../tests</directory>
|
|
|
|
<exclude>../tests/functional</exclude>
|
|
|
|
<exclude>../tests/lint_test.php</exclude>
|
2014-08-10 14:30:58 +02:00
|
|
|
<exclude>../tests/ui</exclude>
|
2013-11-03 21:58:05 -06:00
|
|
|
</testsuite>
|
|
|
|
<testsuite name="phpBB Functional Tests">
|
2018-12-30 21:18:39 +01:00
|
|
|
<directory suffix="_test.php">../tests/functional</directory>
|
2013-11-03 21:58:05 -06:00
|
|
|
</testsuite>
|
2014-08-10 14:30:58 +02:00
|
|
|
<testsuite name="phpBB UI Tests">
|
2018-12-30 21:18:39 +01:00
|
|
|
<directory suffix="_test.php">../tests/ui</directory>
|
2014-08-10 14:30:58 +02:00
|
|
|
</testsuite>
|
2013-11-03 21:58:05 -06:00
|
|
|
</testsuites>
|
|
|
|
|
|
|
|
<groups>
|
|
|
|
<exclude>
|
|
|
|
<group>slow</group>
|
|
|
|
</exclude>
|
|
|
|
</groups>
|
|
|
|
|
|
|
|
<php>
|
|
|
|
<!--server name="PHPBB_TEST_DBMS" value="phpbb\db\driver\sqlite3" /-->
|
|
|
|
<!--server name="PHPBB_TEST_DBHOST" value="../phpbb_unit_tests.sqlite3" /-->
|
|
|
|
<!--server name="PHPBB_TEST_DBPORT" value="" /-->
|
|
|
|
<!--server name="PHPBB_TEST_DBNAME" value="" /-->
|
|
|
|
<!--server name="PHPBB_TEST_DBUSER" value="" /-->
|
|
|
|
<!--server name="PHPBB_TEST_DBPASSWD" value="" /-->
|
|
|
|
<server name="PHPBB_TEST_REDIS_HOST" value="localhost" />
|
2019-11-25 21:33:42 +01:00
|
|
|
<server name="PHPBB_TEST_MEMCACHED_HOST" value="localhost" />
|
2013-11-03 21:58:05 -06:00
|
|
|
<server name="PHPBB_TEST_TABLE_PREFIX" value="phpbb_"/>
|
|
|
|
<server name="PHPBB_FUNCTIONAL_URL" value="http://localhost/" />
|
|
|
|
</php>
|
|
|
|
</phpunit>
|