public function testEmptyProfileEntryToAndFromStringShouldMatch()
 {
     $this->entry->transferFromXML($this->entryText);
     $entryXml = $this->entry->saveXML();
     $newProfileEntry = new Zend_Gdata_Health_ProfileEntry();
     $newProfileEntry->transferFromXML($entryXml);
     $newProfileEntryXML = $newProfileEntry->saveXML();
     $this->assertTrue($entryXml == $newProfileEntryXML);
 }