Esempio n. 1
0
 /**
  * testGetDocCommentReturnsInjectedDocCommentValue
  *
  * @return void
  * @group pdepend
  * @group pdepend::code
  * @group unittest
  */
 public function testGetDocCommentReturnsInjectedDocCommentValue()
 {
     $file = new PHP_Depend_Code_File(null);
     $file->setDocComment('/** Manuel */');
     self::assertEquals('/** Manuel */', $file->getDocComment());
 }