Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1820440
ResponseDecoratorTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
850 B
Subscribers
None
ResponseDecoratorTest.php
View Options
<?php
namespace
Sabre\HTTP
;
class
ResponseDecoratorTest
extends
\PHPUnit_Framework_TestCase
{
protected
$inner
;
protected
$outer
;
function
setUp
()
{
$this
->
inner
=
new
Response
();
$this
->
outer
=
new
ResponseDecorator
(
$this
->
inner
);
}
function
testStatus
()
{
$this
->
outer
->
setStatus
(
201
);
$this
->
assertEquals
(
201
,
$this
->
inner
->
getStatus
());
$this
->
assertEquals
(
201
,
$this
->
outer
->
getStatus
());
$this
->
assertEquals
(
'Created'
,
$this
->
inner
->
getStatusText
());
$this
->
assertEquals
(
'Created'
,
$this
->
outer
->
getStatusText
());
}
function
testToString
()
{
$this
->
inner
->
setStatus
(
201
);
$this
->
inner
->
setBody
(
'foo'
);
$this
->
inner
->
setHeader
(
'foo'
,
'bar'
);
$this
->
assertEquals
((
string
)
$this
->
inner
,
(
string
)
$this
->
outer
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Dec 22, 3:11 AM (5 d, 8 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
915615
Default Alt Text
ResponseDecoratorTest.php (850 B)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment