public function testNoModifiers()
 {
     $node = new ClassMethod('foo', array('type' => 0));
     $this->assertTrue($node->isPublic());
     $this->assertFalse($node->isProtected());
     $this->assertFalse($node->isPrivate());
     $this->assertFalse($node->isAbstract());
     $this->assertFalse($node->isFinal());
     $this->assertFalse($node->isStatic());
 }