forked from joomla/framework.joomla.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
25 lines (24 loc) · 809 Bytes
/
phpunit.xml.dist
File metadata and controls
25 lines (24 loc) · 809 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php" colors="false" backupGlobals="false" strict="true">
<testsuites>
<testsuite name="Functional">
<directory>Tests/Functional</directory>
</testsuite>
<testsuite name="Unit">
<directory>Tests/Unit</directory>
</testsuite>
</testsuites>
<!-- Replace __DIR__ with the absolute path to the installation -->
<php>
<const name="JPATH_ROOT" value="__DIR__" />
</php>
<logging>
<log type="coverage-html" target="app-coverage" title="Joomla-Framework-Status-Application" charset="UTF-8" yui="true" highlight="true"
lowUpperBound="35" highLowerBound="70" />
</logging>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
</phpunit>