Exemplo n.º 1
0
 /**
  * @uses   \phpDocumentor\Reflection\DocBlock\Tags\Property::__construct
  * @uses   \phpDocumentor\Reflection\DocBlock\Description
  * @covers \phpDocumentor\Reflection\DocBlock\Tags\BaseTag::getName
  */
 public function testIfCorrectTagNameIsReturned()
 {
     $fixture = new Property('myProperty', null, new Description('Description'));
     $this->assertSame('property', $fixture->getName());
 }