xref: /webtrees/phpunit.xml.dist (revision 2ebcf907ed34213f816592af04e6c160335d6311)
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      <directory suffix=".phtml">resources/views</directory>
21    </include>
22  </coverage>
23</phpunit>
24