Beispiel #1
0
 /**
  * testIsPrimitiveReturnsFalseByDefault
  *
  * @return void
  * @group pdepend
  * @group pdepend::ast
  * @group unittest
  */
 public function testIsPrimitiveReturnsFalseByDefault()
 {
     $type = new PHP_Depend_Code_ASTTypeNode();
     self::assertFalse($type->isPrimitive());
 }
 /**
  * testIsPrimitiveReturnsFalse
  *
  * @return void
  * @covers PHP_Depend_Code_ASTTypeNode
  * @group pdepend
  * @group pdepend::ast
  * @group unittest
  */
 public function testIsPrimitiveReturnsFalse()
 {
     $type = new PHP_Depend_Code_ASTTypeNode();
     $this->assertFalse($type->isPrimitive());
 }