/**
  * Test the is bool function
  */
 public function testIsBool()
 {
     $this->assertFalse($this->object->isBool());
     $this->object = new Flag('-f', '', true);
     $this->assertTrue($this->object->isBool());
 }