mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-23 03:19:01 +01:00
* upstream/develop: (196 commits) [ticket/11219] Coding guidelines and naming consistency changes [ticket/10841] Revert more whitespace changes. [ticket/10841] Revert whitespace changes. [ticket/10841] adding space after if [ticket/10841] removing unnecessary spacing [ticket/10841] changing affectedrows check to COUNT in sql [ticket/10841] Modifying style and language selectors in UCP [ticket/11247] Fix wrong property reference in flock class. [ticket/10602] Avoid a race condition. [ticket/10602] Use last_queue_run for its intended purpose. [ticket/10716] Collect standard error from executed php process. [ticket/10716] Skip test if php is not in PATH. [ticket/10716] Exclude our dependencies from linting. [ticket/10103] New and improved wording. [ticket/10716] Only lint on php 5.3+. [ticket/10103] Assert with messages. [ticket/10103] assertLessThan/assertGreaterThan. [ticket/10103] Inline assignment is bad? [ticket/10103] $rv had too few characters. [ticket/10103] Correct flock class documentation. ... Conflicts: phpBB/includes/functions.php tests/cache/cache_test.php
40 lines
1.2 KiB
XML
40 lines
1.2 KiB
XML
<?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"
|
|
verbose="true"
|
|
bootstrap="../tests/bootstrap.php">
|
|
<testsuites>
|
|
<testsuite name="phpBB Test Suite">
|
|
<directory suffix="_test.php">../tests/</directory>
|
|
<exclude>tests/functional</exclude>
|
|
</testsuite>
|
|
<testsuite name="phpBB Functional Tests">
|
|
<directory suffix="_test.php" phpVersion="5.3.0" phpVersionOperator=">=">../tests/functional</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<groups>
|
|
<exclude>
|
|
<group>slow</group>
|
|
</exclude>
|
|
</groups>
|
|
|
|
<php>
|
|
<server name="PHPBB_TEST_DBMS" value="phpbb_db_driver_mysqli" />
|
|
<server name="PHPBB_TEST_DBHOST" value="0.0.0.0" />
|
|
<server name="PHPBB_TEST_DBPORT" value="3306" />
|
|
<server name="PHPBB_TEST_DBNAME" value="phpbb_tests" />
|
|
<server name="PHPBB_TEST_DBUSER" value="root" />
|
|
<server name="PHPBB_TEST_DBPASSWD" value="" />
|
|
<server name="PHPBB_TEST_TABLE_PREFIX" value="phpbb_"/>
|
|
</php>
|
|
</phpunit>
|