summaryrefslogtreecommitdiff
path: root/phpunit.xml
blob: b868096c1764b63dd36d130a5253bcc128796f8e (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
<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>
						<directory>./src/</directory>
				</whitelist>
    </filter>
    <php>
        <const name="PHPUNIT_TESTSUITE" value="true"/>
    </php>
</phpunit>