Example #1
0
 public function testGetChildError()
 {
     $parent = new \stdClass();
     $this->uow->expects($this->once())->method('getDocumentId')->with($parent)->will($this->throwException(new \Exception('test')));
     $this->assertFalse($this->extension->getChild($parent, 'bar'));
 }