xref: /webtrees/phpunit.xml.dist (revision 78606cf427772fbdc5222ff607ee23f43078f94b)
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