-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
24 lines (24 loc) · 1009 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="./bootstrap/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="Application Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<php>
<env name="OUTLOOK_OAUTH_AUTHORITY" value="https://login.microsoftonline.com/common"/>
<env name="OUTLOOK_OAUTH_AUTHORIZE_ENDPOINT" value="/oauth2/v2.0/authorize"/>
<env name="OUTLOOK_OAUTH_TOKEN_ENDPOINT" value="/oauth2/v2.0/token"/>
<env name="OUTLOOK_OAUTH_SCOPES" value="openid profile offline_access https://outlook.office.com/User.Read https://outlook.office.com/Calendars.ReadWrite"/>
</php>
</phpunit>