-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
26 lines (26 loc) · 1.03 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.0/phpunit.xsd" backupGlobals="false" colors="true">
<php>
<ini name="display_errors" value="1"/>
<ini name="error_reporting" value="-1"/>
</php>
<testsuites>
<testsuite name="Project Test Suite">
<directory>Tests</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">Event</directory>
<directory suffix=".php">EventListener</directory>
<directory suffix=".php">Form</directory>
<directory suffix=".php">Helper</directory>
<directory suffix=".php">Integration</directory>
</include>
<exclude>
<directory suffix=".php">Config</directory>
<directory suffix=".php">Tests</directory>
</exclude>
</coverage>
</phpunit>