-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
33 lines (30 loc) · 1.05 KB
/
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
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Project Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
<php>
<env name="TWILIO_VERSION" value="2010-04-01"/>
<env name="TWILIO_API_URL" value="https://api.twilio.com/"/>
<env name="TWILIO_NUMBER" value="+15005550006"/>
<env name="TWILIO_ERROR_NUMBER" value="+15005550001"/>
<env name="TWILIO_RECEIVER" value="+15005550006"/>
<env name="TWILIO_AUTH_TOKEN" value="AUTH_TOKEN"/>
<env name="TWILIO_SID" value="SID"/>
</php>
</phpunit>