コード例 #1
0
ファイル: AnnotationListTest.php プロジェクト: mohiva/common
 /**
  * Test if the method `hasAnnotations` returns false on not existing annotation.
  */
 public function testIfHasAnnotationsReturnsFalse()
 {
     $list = new AnnotationList();
     $result = $list->hasAnnotations('NotExisting');
     $this->assertFalse($result);
 }