Esempio n. 1
0
 /**
  * Tests the returned modifiers of an interface.
  *
  * @return void
  * @covers PHP_Depend_Code_Interface
  * @covers PHP_Depend_Code_AbstractClassOrInterface
  * @group pdepend
  * @group pdepend::code
  * @group unittest
  */
 public function testInterfaceReturnsExpectedModifiers()
 {
     $interface = new PHP_Depend_Code_Interface('Foo');
     $this->assertSame(PHP_Depend_ConstantsI::IS_IMPLICIT_ABSTRACT, $interface->getModifiers());
 }