-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
28 lines (28 loc) · 934 Bytes
/
phpunit.xml.dist
File metadata and controls
28 lines (28 loc) · 934 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
27
28
<phpunit
backupGlobals = "false"
backupStaticAttributes = "false"
colors = "true"
convertErrorsToExceptions = "false"
convertNoticesToExceptions = "false"
convertWarningsToExceptions = "false"
processIsolation = "false"
stopOnFailure = "false"
syntaxCheck = "false"
bootstrap = "Tests/bootstrap.php" >
<testsuites>
<testsuite name="Backend Core">
<directory>Tests</directory>
</testsuite>
</testsuites>
<php>
<const name="BACKEND_SITE_STATE" value="testing" />
</php>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">.</directory>
<exclude>
<directory suffix=".php">Tests</directory>
</exclude>
</whitelist>
</filter>
</phpunit>