-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
30 lines (29 loc) · 1.01 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ This file is part of Berlioz framework.
~
~ @license https://opensource.org/licenses/MIT MIT License
~ @copyright 2020 Ronan GIRON
~ @author Ronan GIRON <https://github.com/ElGigi>
~
~ For the full copyright and license information, please view the LICENSE
~ file that was distributed with this source code, to the root.
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
bootstrap="./tests/bootstrap.php"
colors="true">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory suffix="Interface.php">src</directory>
</exclude>
</coverage>
<testsuites>
<testsuite name="Berlioz Router test suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
</phpunit>