summaryrefslogtreecommitdiff
path: root/phpunit.xml
blob: 29bfdba58ae8f65aeae2f1d6a9bbc9cf73ec908b (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
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
         backupGlobals="false"
         bootstrap="./includes/engelsystem_provider.php"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false">
    <testsuites>
        <testsuite name="Models">
            <directory>./test/model/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist>
            <directory>./include/</directory>
            <directory>./public/</directory>
        </whitelist>
    </filter>
    <php>
        <const name="PHPUNIT_TESTSUITE" value="true"/>
    </php>
</phpunit>