public function testHasProperty()
 {
     $this->assertTrue($this->object->hasProperty('Text'));
     $this->assertTrue($this->object->hasProperty('text'));
     $this->assertFalse($this->object->hasProperty('Caption'));
     $this->assertTrue($this->object->hasProperty('content'));
     $this->assertFalse($this->object->hasProperty('content', false));
     $this->assertFalse($this->object->hasProperty('Content'));
 }