/**
  * @covers phpDocumentor\Configuration::getTitle
  */
 public function testIfTitleIsReturned()
 {
     // Arrange
     $expected = 'title';
     $property = new \ReflectionProperty('phpDocumentor\\Configuration', 'title');
     $property->setAccessible(true);
     $property->setValue($this->fixture, $expected);
     $property->setAccessible(false);
     // Act && Assert
     $this->assertSame($expected, $this->fixture->getTitle());
 }