forked from concretecms/concretecms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
24 lines (24 loc) · 820 Bytes
/
phpunit.xml
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="./tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
backupGlobals="false"
backupStaticAttributes="false"
verbose="true"
processIsolation="false">
<testsuites>
<testsuite name="Tests">
<directory>tests/tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">concrete/src/</directory>
<directory suffix=".php">concrete/controllers/</directory>
<directory suffix="controller.php">concrete/</directory>
<directory suffix="page_theme.php">concrete/themes/</directory>
</whitelist>
</filter>
</phpunit>