forked from gambitph/Titan-Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
executable file
·26 lines (26 loc) · 909 Bytes
/
phpunit.xml.dist
File metadata and controls
executable file
·26 lines (26 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
<phpunit bootstrap="tests/bootstrap.php" backupGlobals="false" colors="true">
<testsuites>
<!-- Default test suite to run all tests -->
<testsuite>
<directory prefix="test-" suffix=".php">tests</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="coverage"/>
<log type="coverage-clover" target="coverage.clover"/>
<log type="coverage-text" target="php://stdout"/>
</logging>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<!-- Do not do ./ since it will take forever -->
<directory suffix=".php">lib</directory>
<file>titan-framework.php</file>
<file>titan-framework-embedder.php</file>
<file>titan-framework-checker.php</file>
</whitelist>
</filter>
<php>
<ini name="display_errors" value="On" />
<ini name="display_startup_errors" value="On" />
</php>
</phpunit>