Example #1
0
 /**
  * @see \Tbs\DocBlock\Collection::getText()
  */
 public function testGetBlankText()
 {
     $docBlock = '
         /**
          * @param string $first description of the param
          * @param string $seccond
          *
          * @return array This is a return of method
          */
     ';
     $this->object = new Collection($docBlock);
     $rs = $this->object->getText();
     $this->assertNull($rs);
 }