/**
  * Test for method getErrorDescription
  *
  * @dataProvider errorDescriptionData
  */
 public function testGetErrorDescription($data, $expectedValue)
 {
     $this->testInit($data);
     $result = $this->model->getErrorDescription();
     $this->assertEquals($result, $expectedValue);
 }