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