forked from maciejczyzewski/bottomline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
33 lines (33 loc) · 1.09 KB
/
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
31
32
33
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bottomline.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="true"
>
<testsuites>
<testsuite name="Arrays Test Suite">
<file>tests/arrays.php</file>
</testsuite>
<testsuite name="Chaining Test Suite">
<file>tests/chaining.php</file>
</testsuite>
<testsuite name="Collections Test Suite">
<file>tests/collections.php</file>
</testsuite>
<testsuite name="Functions Test Suite">
<file>tests/functions.php</file>
</testsuite>
<testsuite name="Objects Test Suite">
<file>tests/objects.php</file>
</testsuite>
<testsuite name="Utilities Test Suite">
<file>tests/utilities.php</file>
</testsuite>
</testsuites>
</phpunit>