/**
  *
  * @param array|string $response
  * @param string $separator
  * @param string $expected
  * @dataProvider providerProcessEventResponse
  */
 public function testProcessEventResponse($response, $separator, $expected)
 {
     $result = $this->processor->processEventResponse($response, $separator);
     $this->assertEquals($expected, $result, 'The processEventResponse did not parse the event response correctly.');
 }