forked from joomla/joomla-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtravisci-phpunit.xml
More file actions
25 lines (24 loc) · 856 Bytes
/
Copy pathtravisci-phpunit.xml
File metadata and controls
25 lines (24 loc) · 856 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="tests/unit/bootstrap.php" colors="true">
<testsuites>
<testsuite name="libraries">
<directory>tests/unit/suites/libraries</directory>
</testsuite>
<testsuite name="administrator">
<directory>tests/unit/suites/administrator</directory>
</testsuite>
<testsuite name="FinderIndexer">
<directory>tests/unit/suites/finderIndexer</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-text" target="php://stdout" lowUpperBound="35" highLowerBound="70" />
</logging>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">libraries/cms</directory>
<directory suffix=".php">administrator/components/com_finder/helpers/indexer</directory>
<file>administrator/includes/helper.php</file>
</whitelist>
</filter>
</phpunit>