-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
26 lines (23 loc) · 794 Bytes
/
phpunit.xml.dist
File metadata and controls
26 lines (23 loc) · 794 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
25
26
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="true"
backupStaticAttributes="false"
bootstrap="tests/boot.php"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="false"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader"
strict="false"
verbose="false">
<testsuites>
<testsuite name="Apache FOP">
<directory>tests/suite/</directory>
</testsuite>
</testsuites>
</phpunit>