Пример #1
0
 /**
  * Tests that the {@link PHP_Depend_Code_Method::setModifiers()} method
  * accepts the defined visibility value.
  *
  * @return void
  */
 public function testSetModifiersAcceptsPrivateValue()
 {
     $method = new PHP_Depend_Code_Method('method');
     $method->setModifiers(PHP_Depend_ConstantsI::IS_PRIVATE);
     self::assertTrue($method->isPrivate() && !$method->isPublic() && !$method->isProtected());
 }