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