-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
50 lines (50 loc) · 2.02 KB
/
Copy pathphpunit.xml
File metadata and controls
50 lines (50 loc) · 2.02 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
48
49
50
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
bootstrap="modules/unittest/bootstrap.php"
cacheResult="false">
<testsuites>
<testsuite name="Migration">
<file>application/tests/Migration/RoutingTest.php</file>
<file>application/tests/Migration/RequestResponseTest.php</file>
<file>application/tests/Migration/DatabaseTest.php</file>
<file>application/tests/Migration/ExternalRequestTest.php</file>
<file>application/tests/Migration/ApplicationTest.php</file>
</testsuite>
<testsuite name="System">
<directory>system/tests/kohana</directory>
<exclude>system/tests/kohana/ApacheSimulationTest.php</exclude>
</testsuite>
<testsuite name="Modules">
<directory>modules/auth/tests</directory>
</testsuite>
<testsuite name="Database">
<directory>modules/database/tests</directory>
</testsuite>
<testsuite name="ORM">
<directory>modules/orm/tests</directory>
</testsuite>
<testsuite name="Image">
<directory>modules/image/tests</directory>
</testsuite>
<testsuite name="Codebench">
<directory>modules/codebench/tests</directory>
</testsuite>
<testsuite name="Minion">
<directory>modules/minion/tests</directory>
</testsuite>
<testsuite name="Unittest">
<directory>modules/unittest/tests</directory>
</testsuite>
</testsuites>
<php>
<env name="KOHANA_ENV" value="testing"/>
</php>
<coverage processUncoveredFiles="false">
<include>
<directory suffix=".php">application/classes</directory>
<directory suffix=".php">modules/*/classes</directory>
<directory suffix=".php">system/classes</directory>
</include>
</coverage>
</phpunit>