-
Notifications
You must be signed in to change notification settings - Fork 6
/
phpunit.xml
37 lines (37 loc) · 1.3 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
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="./tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false">
<testsuites>
<testsuite name="Application">
<directory>./tests/Cases/Application</directory>
</testsuite>
<testsuite name="Orm">
<directory>./tests/Cases/Orm</directory>
</testsuite>
<testsuite name="Router">
<directory>./tests/Cases/Router</directory>
</testsuite>
<testsuite name="Controller">
<directory>./tests/Cases/Controller</directory>
</testsuite>
<testsuite name="Event">
<directory>./tests/Cases/Event</directory>
</testsuite>
<testsuite name="Template">
<directory>./tests/Cases/Template</directory>
</testsuite>
<testsuite name="Form">
<directory>./tests/Cases/Form</directory>
</testsuite>
<testsuite name="Pagination">
<directory>./tests/Cases/Pagination</directory>
</testsuite>
<testsuite name="Translate">
<directory>./tests/Cases/Translate</directory>
</testsuite>
</testsuites>
</phpunit>