/**
  */
 public function testIsInstantiable()
 {
     $this->assertTrue($this->object->isInstantiable());
     $this->object->setInterface(true);
     $this->assertFalse($this->object->isInstantiable());
     $this->object->setInterface(false);
     $this->object->setAbstract(true);
     $this->assertFalse($this->object->isInstantiable());
 }