-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml
More file actions
25 lines (24 loc) · 802 Bytes
/
Copy pathphpunit.xml
File metadata and controls
25 lines (24 loc) · 802 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
<phpunit
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="true"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
>
<testsuites>
<testsuite name="Your tests">
<file>./tests/FileTest.php</file>
<file>./tests/ValidatorTest.php</file>
<file>./tests/UrlTest.php</file>
<file>./tests/HashTest.php</file>
<file>./tests/JwtTest.php</file>
<file>./tests/SessionTest.php</file>
<file>./tests/DirectoryTest.php</file>
<file>./tests/HelpersTest.php</file>
</testsuite>
</testsuites>
</phpunit>