-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
34 lines (30 loc) · 1 KB
/
phpunit.xml.dist
File metadata and controls
34 lines (30 loc) · 1 KB
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
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit
backupGlobals = "true"
backupStaticAttributes = "false"
colors = "true"
convertErrorsToExceptions = "true"
convertNoticesToExceptions = "true"
convertWarningsToExceptions = "true"
processIsolation = "false"
stopOnFailure = "false"
syntaxCheck = "false"
bootstrap = "tests/bootstrap.php" >
<testsuites>
<testsuite name="Icans Modules">
<directory>./Tests</directory>
<directory>./*/Tests</directory>
</testsuite>
</testsuites>
<!-- Please set DRUPAL_ROOT in phpunit.xml -->
<php>
<const name="DRUPAL_ROOT" value="" />
<server name="REMOTE_ADDR" value="" />
</php>
<filter>
<whitelist>
<directory>.</directory>
</whitelist>
</filter>
</phpunit>