public function testIndexActionFilterAll()
 {
     $filters = array('Os' => 'windows', 'Status' => 'all');
     $this->_softwareManager->expects($this->once())->method('getSoftware')->with($filters, 'name', 'asc')->willReturn($this->_result);
     $this->_form->expects($this->once())->method('setFilter')->with('all');
     $this->_form->expects($this->once())->method('render');
     $this->dispatch('/console/software/index/?filter=all');
     $this->assertEquals('all', $this->_session->filter);
     $this->assertResponseStatusCode(200);
     $this->assertNotQueryContentContains('td a', 'Akzeptieren');
     $this->assertNotQueryContentContains('td a', 'Ignorieren');
 }