-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
47 lines (47 loc) · 1.44 KB
/
Copy pathphpunit.xml
File metadata and controls
47 lines (47 loc) · 1.44 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
35
36
37
38
39
40
41
42
43
44
45
46
47
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite>
<directory prefix="tests-" suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<file>intercessor.php</file>
<file>uninstall.php</file>
<exclude>
<file>./src/Admin/Prayers/page.php</file>
<file>./src/Admin/Tools/Export/functions.php</file>
<file>./src/Admin/Tools/Export/Batch_History.php</file>
<file>./src/Admin/Tools/Export/Batch_Prayers.php</file>
<file>./src/Admin/Tools/Stats/Requesters.php</file>
<file>./src/Admin/Tools/Reset.php</file>
<file>./src/Admin/Tools/Stats/Prayers.php</file>
<file>./src/Admin/Tools/Stats/All.php</file>
<file>./src/Admin/Import/Prayers.php</file>
<file>./src/Admin/Import/Requesters.php</file>
<file>./src/Cli.php</file>
<directory suffix=".php">./src/Admin/Tools/Export</directory>
<directory>./src/libraries/</directory>
</exclude>
</whitelist>
</filter>
<listeners>
<listener class="SpeedTrapListener" file="tests/phpunit/speed-trap-listener.php">
<arguments>
<array>
<element key="slowThreshold">
<integer>150</integer>
</element>
</array>
</arguments>
</listener>
</listeners>
</phpunit>