Subversion Repositories php-qbpwcf

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 liveuser 1
<?xml version="1.0" encoding="UTF-8"?>
2
<phpunit
3
    forceCoversAnnotation="true"
4
    mapTestClassNameToCoveredClassName="true"
5
    bootstrap="tests/bootstrap.php"
6
    colors="true"
7
    backupGlobals="false"
8
    backupStaticAttributes="false"
9
    syntaxCheck="false"
10
    stopOnError="false"
11
>
12
 
13
    <testsuites>
14
        <testsuite name="unit">
15
            <directory>./tests/unit/</directory>
16
        </testsuite>
17
    </testsuites>
18
 
19
    <testsuites>
20
        <testsuite name="integration">
21
            <directory>./tests/integration/</directory>
22
        </testsuite>
23
    </testsuites>
24
 
25
    <filter>
26
        <whitelist>
27
            <directory>./src/</directory>
28
        </whitelist>
29
    </filter>
30
</phpunit>