forked from NetCommons3/PhotoAlbums
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
19 lines (19 loc) · 907 Bytes
/
phpunit.xml.dist
File metadata and controls
19 lines (19 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendors/autoload.php">
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".ctp">app/Plugin/PhotoAlbums</directory>
<directory suffix=".php">app/Plugin/PhotoAlbums</directory>
<exclude>
<directory suffix=".php">app/Plugin/PhotoAlbums/Config/Migration</directory>
<directory suffix=".php">app/Plugin/PhotoAlbums/Config/Schema</directory>
<directory suffix=".php">app/Plugin/PhotoAlbums/Test/Case</directory>
<directory suffix=".php">app/Plugin/PhotoAlbums/Test/Fixture</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
<log type="coverage-html" target="build/logs/clover"/>
</logging>
</phpunit>