-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml
More file actions
24 lines (24 loc) · 862 Bytes
/
phpunit.xml
File metadata and controls
24 lines (24 loc) · 862 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
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="Prompt">
<directory prefix="test-" suffix=".php">./tests/</directory>
</testsuite>
<testsuite name="Commentium">
<directory suffix=".php">./vendor/postmatic/commentium/tests/phpunit/</directory>
<exclude>./vendor/postmatic/commentium/tests/phpunit/No_Outbound_Test_Case.php</exclude>
<exclude>./vendor/postmatic/commentium/tests/phpunit/Mock_Mailer_Test_Case.php</exclude>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>rest</group>
</exclude>
</groups>
</phpunit>