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

phpunit.unit.xml - github.com/nextcloud/calendar.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08553d3f5fcd89ed366afc23cc59cd65422abc18 (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="tests/php/unit/bootstrap.php"
         verbose="true"
         xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd">
  <testsuite name="unit">
    <directory suffix="Test.php">./tests/php/unit</directory>
  </testsuite>
  <coverage>
    <include>
      <directory suffix=".php">./lib</directory>
    </include>
    <report>
      <clover outputFile="./clover.unit.xml"/>
    </report>
  </coverage>
</phpunit>