mirror of
https://github.com/phpbb/phpbb.git
synced 2025-01-18 22:58:10 +01:00
6ab9ef54a2
As per the ticket comments, these can simply be removed, rather than having to be renamed to the new file locations. PHPBB3-11466
40 lines
1.1 KiB
XML
40 lines
1.1 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="false"
|
|
bootstrap="tests/bootstrap.php"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="phpBB Test Suite">
|
|
<directory suffix="_test.php">./tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<groups>
|
|
<include>
|
|
<group>functional</group>
|
|
</include>
|
|
</groups>
|
|
|
|
<filter>
|
|
<blacklist>
|
|
<directory>./tests/</directory>
|
|
</blacklist>
|
|
<whitelist>
|
|
<directory suffix=".php">./phpBB/includes/</directory>
|
|
<exclude>
|
|
<file>./phpBB/includes/search/fulltext_native.php</file>
|
|
<file>./phpBB/includes/search/fulltext_mysql.php</file>
|
|
<directory suffix=".php">./phpBB/includes/captcha/</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|