-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml
More file actions
28 lines (28 loc) · 909 Bytes
/
phpunit.xml
File metadata and controls
28 lines (28 loc) · 909 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
26
27
28
<phpunit bootstrap="test/bootstrap.php">
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<testsuites>
<testsuite name="main">
<file>test/BaseLogger.php</file>
<file>test/BasicModel.php</file>
<file>test/Cache.php</file>
<file>test/CorePlugin.php</file>
<file>test/FormLib.php</file>
<file>test/FormLib.php</file>
<file>test/Migrate.php</file>
<file>test/MVC.php</file>
<file>test/NamedSession.php</file>
<file>test/Pages.php</file>
<file>test/SQL.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<exclude>
<directory>src/adodb5</directory>
</exclude>
</whitelist>
</filter>
</phpunit>