Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102847027
CallsTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Feb 24, 19:28
Size
636 B
Mime Type
text/x-php
Expires
Wed, Feb 26, 19:28 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24434951
Attached To
rPH Phabricator
CallsTest.php
View Options
<?php
use
\Mockery
as
m
;
class
CallsTest
extends
PHPUnit_Framework_TestCase
{
/**
* @dataProvider sidProvider
*/
function
testApplicationSid
(
$sid
,
$expected
)
{
$result
=
Services_Twilio_Rest_Calls
::
isApplicationSid
(
$sid
);
$this
->
assertEquals
(
$expected
,
$result
);
}
function
sidProvider
()
{
return
array
(
array
(
"AP2a0747eba6abf96b7e3c3ff0b4530f6e"
,
true
),
array
(
"CA2a0747eba6abf96b7e3c3ff0b4530f6e"
,
false
),
array
(
"AP2a0747eba6abf96b7e3c3ff0b4530f"
,
false
),
array
(
"http://www.google.com/asdfasdfAP"
,
false
),
);
}
}
Event Timeline
Log In to Comment