Example #1
0
 /**
  * @see \Tbs\DocBlock\Collection::hasTags()
  */
 public function testHasTagsFalse()
 {
     $docBlock = '
         /**
          * ' . $this->shortDescription . '
          *
          * ' . $this->longDescription . '
          */
     ';
     $this->object = new Collection($docBlock);
     $rs = $this->object->hasTags();
     $this->assertFalse($rs);
 }