Page MenuHomePhabricator

ProxyWriteTest.php
No OneTemporary

ProxyWriteTest.php

<?php
namespace Sabre\CalDAV\Principal;
use Sabre\DAVACL;
class ProxyWriteTest extends ProxyReadTest {
function getInstance() {
$backend = new DAVACL\PrincipalBackend\Mock();
$principal = new ProxyWrite($backend, array(
'uri' => 'principal/user',
));
$this->backend = $backend;
return $principal;
}
function testGetName() {
$i = $this->getInstance();
$this->assertEquals('calendar-proxy-write', $i->getName());
}
function testGetDisplayName() {
$i = $this->getInstance();
$this->assertEquals('calendar-proxy-write', $i->getDisplayName());
}
function testGetPrincipalUri() {
$i = $this->getInstance();
$this->assertEquals('principal/user/calendar-proxy-write', $i->getPrincipalUrl());
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Dec 20, 11:42 AM (4 w, 1 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
914094
Default Alt Text
ProxyWriteTest.php (834 B)

Event Timeline