-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
23 lines (23 loc) · 813 Bytes
/
phpunit.xml.dist
File metadata and controls
23 lines (23 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
bootstrap="./vendor/autoload.php"
convertErrorsToExceptions='true'
convertNoticesToExceptions='true'
convertWarningsToExceptions='true'
stopOnError="true"
timeoutForLargeTests="60"
timeoutForMediumTests="10"
timeoutForSmallTests="1"
verbose="false" >
<php>
<env name="MAILWIZZ_API_URL" value=""/>
<env name="MAILWIZZ_API_PUBLIC_KEY" value=""/>
<env name="MAILWIZZ_API_PRIVATE_KEY" value=""/>
</php>
<testsuites>
<testsuite name="Unit tests">
<directory>./MailWizzApi/Test</directory>
</testsuite>
</testsuites>
</phpunit>