forked from phptal/PHPTAL
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpunit.xml
29 lines (29 loc) · 966 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
29
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="./tests/config/bootstrap.php"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
cacheDirectory=".phpunit.cache"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnSkippedTests="true"
displayDetailsOnIncompleteTests="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
>
<coverage/>
<php>
<ini name="display_errors" value="1"/>
<ini name="zend.exception_ignore_args" value="0"/>
</php>
<testsuites>
<testsuite name="PHPTALtests">
<directory>tests</directory>
<exclude>tests/config</exclude>
</testsuite>
</testsuites>
<source>
<include>
<directory>src/</directory>
</include>
</source>
</phpunit>