Esempio n. 1
0
 /**
  * @see \Tbs\DocBlock\Tag\Abstraction::export()
  */
 public function testExport()
 {
     $this->object->setTag('param')->setType('string')->setContent('$name')->setDescription('This is description of param.');
     $rs = $this->object->export();
     $this->assertInternalType('string', $rs);
     $this->assertEquals('@param string $name This is description of param.', $rs);
 }