public function test_nequals()
 {
     $this->_object->setValueFromDec('233');
     $newobj = new RtfHexaControlSymbol();
     $newobj->setValueFromDec('234');
     $this->assertFalse($this->_object->equals($newobj));
     $this->assertFalse($newobj->equals($this->_object));
 }