public function testCanInsertRow()
 {
     $testPayload = array();
     foreach ($this->adapter->getColumns() as $k) {
         $testPayload[strtolower($k)] = $k . substr(time(), 6);
     }
     $entries = $this->adapter->insertRow($testPayload);
     foreach ($entries as $entry) {
         $this->assertTrue($entry instanceof Zend_Gdata_App_Entry);
     }
 }