forked from emuravjev/mdash
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
26 lines (25 loc) · 833 Bytes
/
phpunit.xml.dist
File metadata and controls
26 lines (25 loc) · 833 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
colors="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
bootstrap="tests/bootstrap.php">
<testsuites>
<testsuite name="Integration">
<directory suffix=".php">tests/EMT/Integration</directory>
</testsuite>
<testsuite name="Rules">
<directory suffix=".php">tests/EMT/Rules</directory>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory suffix=".php">PEAR_INSTALL_DIR</directory>
<directory suffix=".php">PHP_LIBDIR</directory>
<directory suffix=".php">vendor</directory>
</blacklist>
</filter>
</phpunit>