forked from orangehrm/orangehrm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
30 lines (27 loc) · 884 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
25
26
27
28
29
30
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
colours = "true"
convertErrorsToExceptions = "true"
convertNoticesToExceptions = "true"
convertWarningsToExceptions = "true"
strict = "true"
>
<filter>
<whitelist>
<directory suffix=".php">symfony</directory>
<exclude>
<directory>symfony/apps</directory>
<directory>symfony/cache</directory>
<directory>symfony/config</directory>
<directory>symfony/data</directory>
<directory>symfony/lib</directory>
<directory>symfony/web</directory>
</exclude>
</whitelist>
</filter>
<testsuites>
<testsuite name="All Tests">
<file>symfony/test/PluginAllTests.php</file>
</testsuite>
</testsuites>
</phpunit>