public function testClear()
 {
     $this->object->Text('111');
     $this->assertEquals('111', $this->object->CompileText());
     $this->object->Clear();
     $this->assertEquals('', $this->object->CompileText());
 }