-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
34 lines (32 loc) · 961 Bytes
/
phpunit.xml
File metadata and controls
34 lines (32 loc) · 961 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
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="vendor/autoload.php"
colors="true"
stopOnFailure="false"
displayDetailsOnPhpunitDeprecations="true">
<testsuites>
<testsuite name="All">
<directory suffix="Test.php">tests/</directory>
</testsuite>
<testsuite name="Webhook">
<directory suffix="Test.php">tests/Webhook</directory>
</testsuite>
<testsuite name="Webhook:Handler">
<file>tests/Webhook/HandlerTest.php</file>
</testsuite>
<testsuite name="Webhook:Domains">
<directory suffix="Test.php">tests/Webhook/Domains</directory>
</testsuite>
<testsuite name="Webhook:Utilities">
<directory suffix="Test.php">tests/Webhook/Utilities</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory suffix=".php">src/Laravel</directory>
</exclude>
</source>
</phpunit>