-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathphpunit.xml.dist
23 lines (23 loc) · 813 Bytes
/
phpunit.xml.dist
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>