|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + backupGlobals="true" |
| 4 | + colors="true" |
| 5 | + processIsolation="false" |
| 6 | + stopOnFailure="false" |
| 7 | + bootstrap="../tests/bootstrap.php" |
| 8 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" |
| 9 | + cacheDirectory=".phpunit.cache" |
| 10 | + backupStaticProperties="false"> |
| 11 | + <testsuites> |
| 12 | + <testsuite name="phpBB Test Suite"> |
| 13 | + <directory suffix="_test.php">../tests</directory> |
| 14 | + <exclude>../tests/functional</exclude> |
| 15 | + <exclude>../tests/lint_test.php</exclude> |
| 16 | + </testsuite> |
| 17 | + <testsuite name="phpBB Functional Tests"> |
| 18 | + <directory suffix="_test.php">../tests/functional</directory> |
| 19 | + </testsuite> |
| 20 | + </testsuites> |
| 21 | + <groups> |
| 22 | + <exclude> |
| 23 | + <group>slow</group> |
| 24 | + </exclude> |
| 25 | + </groups> |
| 26 | + <source restrictDeprecations="true"> |
| 27 | + <include> |
| 28 | + <directory>../</directory> |
| 29 | + </include> |
| 30 | + <exclude> |
| 31 | + <directory>../tests/</directory> |
| 32 | + <directory>../language/</directory> |
| 33 | + <directory>../migrations/</directory> |
| 34 | + </exclude> |
| 35 | + </source> |
| 36 | + <php> |
| 37 | + <server name="PHPBB_TEST_DBMS" value="mysqli"/> |
| 38 | + <server name="PHPBB_TEST_DBHOST" value="0.0.0.0"/> |
| 39 | + <server name="PHPBB_TEST_DBPORT" value="3306"/> |
| 40 | + <server name="PHPBB_TEST_DBNAME" value="phpbb_tests"/> |
| 41 | + <server name="PHPBB_TEST_DBUSER" value="root"/> |
| 42 | + <server name="PHPBB_TEST_DBPASSWD" value=""/> |
| 43 | + <server name="PHPBB_TEST_TABLE_PREFIX" value="phpbb_"/> |
| 44 | + <server name="PHPBB_FUNCTIONAL_URL" value="http://localhost/"/> |
| 45 | + </php> |
| 46 | +</phpunit> |
0 commit comments