-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
35 lines (34 loc) · 1.3 KB
/
phpunit.xml.dist
File metadata and controls
35 lines (34 loc) · 1.3 KB
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
35
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
strict="true">
<testsuites>
<testsuite name="AvisotaCoreTestSuite">
<directory suffix="Test.php">test/Avisota/Test/</directory>
</testsuite>
</testsuites>
<!--
use the environment variables in your local phpunit.xml to enable transport testing
-->
<!--
<php>
<env name="AVISOTA_TEST_SMTP_HOST" value="" />
<env name="AVISOTA_TEST_SMTP_PORT" value="" />
<env name="AVISOTA_TEST_SMTP_USERNAME" value="" />
<env name="AVISOTA_TEST_SMTP_PASSWORD" value="" />
<env name="AVISOTA_TEST_SMTP_ENCRYPTION" value="" />
<env name="AVISOTA_TEST_IMAP_HOST" value="" />
<env name="AVISOTA_TEST_IMAP_PORT" value="" />
<env name="AVISOTA_TEST_IMAP_PROTOCOL" value="" />
<env name="AVISOTA_TEST_IMAP_USERNAME" value="" />
<env name="AVISOTA_TEST_IMAP_PASSWORD" value="" />
<env name="AVISOTA_TEST_IMAP_ENCRYPTION" value="" />
</php>
-->
</phpunit>