aboutsummaryrefslogtreecommitdiff
blob: e3416c6db3986eb892538e460dc050f2c4e532b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>

<phpunit backupGlobals="true"
         backupStaticAttributes="true"
         colors="false"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false"
         syntaxCheck="false"
         bootstrap="tests/bootstrap.php"
>
    <testsuites>
        <testsuite name="phpBB Test Suite">
            <directory suffix=".php">./tests/</directory>
        </testsuite>
    </testsuites>
    
    <filter>
        <blacklist>
            <directory>./tests/</directory>
            <directory>./phpBB/</directory>
        </blacklist>
        <whitelist>
            <directory>./phpBB/includes/db/</directory>
            <file>./phpBB/includes/utf/utf_tools.php</file>
            <file>./phpBB/includes/functions.php</file>
            <file>./phpBB/includes/functions_content.php</file>
            <file>./phpBB/includes/session.php</file>
            <file>./phpBB/includes/template.php</file>
        </whitelist>
    </filter>
</phpunit>