Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
969 B
30 lines
969 B
<?xml version="1.0" encoding="utf-8" ?> |
|
<phpunit |
|
bootstrap="bootstrap.php" |
|
verbose="true" |
|
backupGlobals="false" |
|
timeoutForSmallTests="900" |
|
timeoutForMediumTests="900" |
|
timeoutForLargeTests="900"> |
|
<testsuite name='friendica'> |
|
<directory suffix='.php'>functional/</directory> |
|
<directory suffix='.php'>legacy/</directory> |
|
<directory suffix='.php'>src/</directory> |
|
</testsuite> |
|
<!-- Filters for Code Coverage --> |
|
<filter> |
|
<whitelist> |
|
<directory suffix=".php">..</directory> |
|
<exclude> |
|
<directory suffix=".php">../config/</directory> |
|
<directory suffix=".php">../doc/</directory> |
|
<directory suffix=".php">../images/</directory> |
|
<directory suffix=".php">../library/</directory> |
|
<directory suffix=".php">../spec/</directory> |
|
<directory suffix=".php">../tests/</directory> |
|
<directory suffix=".php">../view/</directory> |
|
<directory suffix=".php">../vendor/</directory> |
|
</exclude> |
|
</whitelist> |
|
</filter> |
|
</phpunit>
|
|
|