Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94234576
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
Wed, Dec 4, 23:59
Size
636 B
Mime Type
text/x-php
Expires
Fri, Dec 6, 23:59 (2 d)
Engine
blob
Format
Raw Data
Handle
22766019
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