forked from erikfercak/Timecop-PHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
30 lines (29 loc) · 978 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
30
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.0/phpunit.xsd"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="false"
convertWarningsToExceptions="false"
stopOnError="true"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
verbose="false">
<php>
<!-- must be set in php.ini or php -d runkit.internal_override=1 vendor/bin/phpunit -->
<!-- <ini name="runkit.internal_override" value="1" /> -->
<ini name="error_reporting" value="E_ALL&~E_NOTICE&~E_DEPRECATED" /> -->
</php>
<testsuites>
<testsuite name="all">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src/</directory>
</whitelist>
</filter>
</phpunit>