2012-03-21 22:57:29 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit backupGlobals="true"
|
2016-07-24 17:17:41 +02:00
|
|
|
backupStaticAttributes="false"
|
2012-03-21 22:57:29 +00:00
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
syntaxCheck="true"
|
|
|
|
strict="true"
|
2012-12-04 00:40:24 +01:00
|
|
|
verbose="true"
|
2012-03-21 22:57:29 +00:00
|
|
|
bootstrap="../tests/bootstrap.php">
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="phpBB Test Suite">
|
2014-05-03 03:36:01 +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-07-12 16:14:16 -04:00
|
|
|
</testsuite>
|
2012-05-11 15:17:13 +02:00
|
|
|
<testsuite name="phpBB Functional Tests">
|
2013-01-23 00:26:38 +01:00
|
|
|
<directory suffix="_test.php" phpVersion="5.3.19" phpVersionOperator=">=">../tests/functional</directory>
|
2012-03-21 22:57:29 +00:00
|
|
|
</testsuite>
|
2014-08-10 14:30:58 +02:00
|
|
|
<testsuite name="phpBB UI Tests">
|
|
|
|
<directory suffix="_test.php" phpVersion="5.3.19" phpVersionOperator=">=">../tests/ui</directory>
|
|
|
|
</testsuite>
|
2012-03-21 22:57:29 +00:00
|
|
|
</testsuites>
|
|
|
|
|
2012-03-22 16:00:10 +00:00
|
|
|
<groups>
|
|
|
|
<exclude>
|
|
|
|
<group>slow</group>
|
|
|
|
</exclude>
|
|
|
|
</groups>
|
|
|
|
|
2012-03-21 22:57:29 +00:00
|
|
|
<php>
|
2013-09-16 04:01:18 +02:00
|
|
|
<server name="PHPBB_TEST_DBMS" value="phpbb\db\driver\postgres"/>
|
2012-03-23 06:40:15 +00:00
|
|
|
<server name="PHPBB_TEST_DBHOST" value="localhost" />
|
|
|
|
<server name="PHPBB_TEST_DBPORT" value="5432" />
|
|
|
|
<server name="PHPBB_TEST_DBNAME" value="phpbb_tests" />
|
|
|
|
<server name="PHPBB_TEST_DBUSER" value="postgres" />
|
|
|
|
<server name="PHPBB_TEST_DBPASSWD" value="" />
|
2013-01-22 20:12:24 +01:00
|
|
|
<server name="PHPBB_TEST_REDIS_HOST" value="localhost" />
|
2012-03-23 06:40:15 +00:00
|
|
|
<server name="PHPBB_TEST_TABLE_PREFIX" value="phpbb_"/>
|
2013-01-22 19:54:48 +01:00
|
|
|
<server name="PHPBB_FUNCTIONAL_URL" value="http://localhost/" />
|
2012-03-21 22:57:29 +00:00
|
|
|
</php>
|
|
|
|
</phpunit>
|