public function testGetCountUsesSpecifiedCount()
 {
     $collectionData = array(array('foo' => 'bar'), array('foo' => 'baz'));
     $this->filter->setCount(3);
     $this->filter->setData($collectionData);
     $this->assertEquals(3, $this->filter->getCount());
 }