public function testCountFeeds()
 {
     resetLog();
     $this->object->setMock(true, 'countFeeds.xml');
     $this->assertFalse($this->object->getFeedCount());
     //not fetched yet
     $ok = $this->object->countFeeds();
     $this->assertNull($ok);
     $check = parseLog();
     $this->assertEquals('Single Mock File set: countFeeds.xml', $check[1]);
     $this->assertEquals('Fetched Mock File: mock/countFeeds.xml', $check[2]);
     $o = $this->object->getOptions();
     $this->assertEquals('GetFeedSubmissionCount', $o['Action']);
     $count = $this->object->getFeedCount();
     $this->assertEquals('463', $count);
 }