forked from allenmichael/box-jwt-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.phpunit.xml
More file actions
29 lines (29 loc) · 997 Bytes
/
Copy pathexample.phpunit.xml
File metadata and controls
29 lines (29 loc) · 997 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
bootstrap="bootstrap/autoload.php"
colors="true"
processIsolation="false"
stopOnFailure="false"
failOnNotice="true"
failOnWarning="true"
failOnDeprecation="true">
<testsuites>
<testsuite name="Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<!-- Scope failures to our own code: only notices/warnings/deprecations
triggered in src/ fail the build; vendor-triggered ones are ignored. -->
<source restrictNotices="true"
restrictWarnings="true"
ignoreIndirectDeprecations="true">
<include>
<directory>src</directory>
</include>
</source>
<php>
<env name="APP_ENV" value="testing"/>
<env name="CONFIG" value="box.config.php"/>
<env name="AS_USER_EMAIL" value="<box-user-login-email>"/>
</php>
</phpunit>