/**
  * testGetResponseParameters
  */
 public function testGetResponseParameters()
 {
     $this->assertNull($this->service->getResponseParameters());
     $responseParameters = Phake::mock('Brown298\\DataTablesBundle\\Model\\ResponseParameterBag');
     $this->setProtectedValue($this->service, 'responseParameters', $responseParameters);
     $this->assertEquals($responseParameters, $this->service->getResponseParameters());
 }