예제 #1
0
파일: principal.php 프로젝트: evanjt/core
 /**
  * @expectedException \Sabre\DAV\Exception
  * @expectedExceptionMessage Principal not found
  */
 public function testGetGroupMemberSetEmpty()
 {
     $this->userManager->expects($this->once())->method('get')->with('foo')->will($this->returnValue(null));
     $this->connector->getGroupMemberSet('principals/users/foo');
 }