forked from rugk/threema-msgapi-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml
24 lines (24 loc) · 773 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
<phpunit
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
beStrictAboutTestsThatDoNotTestAnything="true"
>
<testsuites>
<testsuite name="All Tests">
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./tests</directory>
</whitelist>
</filter>
<php>
<ini name="zend.assertions" value="1"/>
<ini name="assert.exception" value="1"/>
<ini name="display_errors" value="1"/>
<ini name="display_startup_errors" value="1"/>
<const name="UNIT_TEST" value="true"/>
</php>
</phpunit>