forked from FeastFramework/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
36 lines (35 loc) · 1.29 KB
/
phpunit.xml
File metadata and controls
36 lines (35 loc) · 1.29 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
<phpunit backupGlobals="true" bootstrap="FeastTests/bootstrap.php" cacheResultFile="FeastTests/Coverage/.phpunit.result.cache">
<testsuites>
<testsuite name="unit">
<directory>FeastTests</directory>
</testsuite>
</testsuites>
<coverage
includeUncoveredFiles="false"
processUncoveredFiles="false"
pathCoverage="false"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="true"
>
<include>
<directory suffix=".php">.</directory>
<file>Form.php</file>
<file>Email.php</file>
<file>Main.php</file>
<directory suffix=".php">Attributes</directory>
<directory suffix=".php">Collection</directory>
<file>Traits/Collection.php</file>
<directory>Controllers</directory>
</include>
<exclude>
<directory suffix=".php">FeastTests</directory>
<directory>Install</directory>
<file>PsalmLoader.php</file>
<file>../Autoloader.php</file>
</exclude>
<report>
<text outputFile="FeastTests/Coverage/coverage.txt" showUncoveredFiles="false" showOnlySummary="false"/>
</report>
<!-- ... -->
</coverage>
</phpunit>