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