public function testGetHash()
 {
     $this->assertEmpty($this->filterCollection->getHash());
     $this->filterCollection->addFilter('test', $this->filter);
     $this->filterCollection->enable('test');
     $this->assertEquals('testa:0:{}', $this->filterCollection->getHash());
     $this->filterCollection->disable('test');
     $this->assertEmpty($this->filterCollection->getHash());
 }