-
Notifications
You must be signed in to change notification settings - Fork 100
/
phpunit.xml
28 lines (28 loc) · 977 Bytes
/
phpunit.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/bootstrap.php" stderr="true" processIsolation="true" colors="true" beStrictAboutTestsThatDoNotTestAnything="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd">
<coverage>
<report>
<clover outputFile="clover.xml"/>
<html outputDirectory="tests/report"/>
</report>
</coverage>
<testsuites>
<testsuite name="Shieldon Firewall Test Suite">
<directory>tests/Firewall/</directory>
</testsuite>
</testsuites>
<php>
<ini name="date.timezone" value="UTC"/>
<const name="PHP_UNIT_TEST" value="TRUE"/>
</php>
<logging/>
<source>
<include>
<directory suffix=".php">src/Firewall/</directory>
</include>
<exclude>
<file>src/Firewall/Helpers.php</file>
<directory suffix=".php">src/Firewall/Integration/</directory>
</exclude>
</source>
</phpunit>