xref: /webtrees/phpunit.xml.dist (revision 05980a8c5eeb0e8c7a9c71e7630ae1b1447a3bed)
1<?xml version="1.0"?>
2<phpunit
3  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4  xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
5  bootstrap="vendor/autoload.php"
6  colors="true"
7  forceCoversAnnotation="true"
8>
9  <testsuites>
10    <testsuite name="Unit tests">
11      <directory>tests/app</directory>
12    </testsuite>
13    <testsuite name="Feature tests">
14      <directory>tests/feature</directory>
15    </testsuite>
16  </testsuites>
17  <coverage>
18    <include>
19      <directory suffix=".php">app</directory>
20    </include>
21  </coverage>
22</phpunit>
23