2012-03-21 22:57:29 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit backupGlobals="true"
|
|
|
|
backupStaticAttributes="true"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
syntaxCheck="true"
|
|
|
|
strict="true"
|
|
|
|
bootstrap="../tests/bootstrap.php">
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="phpBB Test Suite">
|
|
|
|
<directory suffix="_test.php">../tests/</directory>
|
2012-05-11 15:17:13 +02:00
|
|
|
<exclude>tests/functional</exclude>
|
|
|
|
</testsuite>
|
|
|
|
<testsuite name="phpBB Functional Tests">
|
|
|
|
<directory suffix="_test.php" phpVersion="5.3.0" phpVersionOperator=">=">../tests/functional</directory>
|
2012-03-21 22:57:29 +00:00
|
|
|
</testsuite>
|
|
|
|
</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>
|
|
|
|
<!-- "Real" test database -->
|
|
|
|
<!-- uncomment, otherwise sqlite memory runs -->
|
2012-03-23 06:40:15 +00:00
|
|
|
<server name="PHPBB_TEST_DBMS" value="postgres"/>
|
|
|
|
<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="" />
|
|
|
|
<server name="PHPBB_TEST_TABLE_PREFIX" value="phpbb_"/>
|
2012-03-21 22:57:29 +00:00
|
|
|
</php>
|
|
|
|
</phpunit>
|