-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
30 lines (28 loc) · 857 Bytes
/
phpunit.xml.dist
File metadata and controls
30 lines (28 loc) · 857 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ This file is part of the CosaVostra, Usyme package.
~
~ (c) Mohamed Radhi GUENNICHI <rg@mate.tn> <+216 50 711 816>
~
~ For the full copyright and license information, please view the LICENSE
~ file that was distributed with this source code.
-->
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
bootstrap="./vendor/autoload.php"
>
<testsuites>
<testsuite name="Typeform Webhook Tests">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src</directory>
</whitelist>
</filter>
</phpunit>