forked from victorjonsson/Arlima
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
24 lines (24 loc) · 753 Bytes
/
phpunit.xml
File metadata and controls
24 lines (24 loc) · 753 Bytes
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 bootstrap="classes/tests/setup.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false">
<testsuites>
<testsuite name="Source">
<directory suffix=".php">classes/tests/</directory>
</testsuite>
</testsuites>
<filter>
<blacklist>
<exclude>
<class>ExportImportBase</class>
<file>classes/tests/ExportImportBase.php</file>
</exclude>
</blacklist>
</filter>
</phpunit>