/**
  * @covers \phpDocumentor\Transformer\Template\Collection::getTemplatesPath
  */
 public function testCollectionProvidesTemplatePath()
 {
     // Arrange
     $path = '/tmp';
     $this->factoryMock->shouldReceive('getTemplatePath')->andReturn($path);
     // Act
     $result = $this->fixture->getTemplatesPath();
     // Assert
     $this->assertSame($path, $result);
 }