forked from smtp2go-oss/wordpress-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
17 lines (17 loc) · 1.04 KB
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./smtp2go</directory>
</include>
</coverage>
<php>
<const name="SMTP2GO_API_KEY" value="api-XXX"/>
<const name="SMTP2GO_TEST_RECIPIENT" value="Name <[email protected]>"/>
<const name="SMTP2GO_TEST_RECIPIENT_NAME" value="Name"/>
<const name="SMTP2GO_TEST_RECIPIENT_EMAIL" value="[email protected]"/>
<const name="SMTP2GO_TEST_SENDER" value="Automated Test Sender <[email protected]>"/>
<const name="SMTP2GO_TEST_SENDER_NAME" value="Automated Test Sender"/>
<const name="SMTP2GO_TEST_SENDER_EMAIL" value="[email protected]"/>
</php>
</phpunit>