Welcome to mirror list, hosted at ThFree Co, Russian Federation.

phpunit.unit.xml « tests - github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a35b99f33145d2b63c6e18e4d57fe1e614bd4274 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="bootstrap.php" verbose="true" timeoutForSmallTests="900" timeoutForMediumTests="900" timeoutForLargeTests="900" cacheResult="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
  <coverage>
    <include>
      <directory suffix=".php">../lib</directory>
    </include>
    <exclude>
      <directory suffix=".php">../mail/lib/Vendor</directory>
    </exclude>
    <report>
      <clover outputFile="./clover.unit.xml"/>
    </report>
  </coverage>
  <testsuite name="Mail app tests">
    <directory suffix="Test.php">Unit</directory>
  </testsuite>
</phpunit>