-
Notifications
You must be signed in to change notification settings - Fork 3
/
phpunit.xml.dist
26 lines (26 loc) · 1009 Bytes
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="./tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false"
backupStaticAttributes="true">
<testsuites>
<testsuite>
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src</directory>
<exclude>
<directory suffix=".php">src/assets</directory>
<directory suffix=".php">src/Properties</directory>
<directory suffix=".php">src/propertyHandler/views</directory>
<directory suffix=".php">src/translations</directory>
<directory suffix=".php">src/widgets</directory>
</exclude>
</whitelist>
</filter>
</phpunit>