public function testSetFeedId()
 {
     $ok = $this->object->setFeedId(77);
     $this->assertNull($ok);
     $o = $this->object->getOptions();
     $this->assertArrayHasKey('FeedSubmissionId', $o);
     $this->assertEquals(77, $o['FeedSubmissionId']);
     $this->assertFalse($this->object->setFeedId('string'));
 }