public function testGetFailureExceptions()
 {
     $exceptions = array(array('message' => 'Error 1'), array('message' => 'Error 2'));
     $expected = array('Error 1', 'Error 2');
     $this->stepExecution->expects($this->once())->method('getFailureExceptions')->will($this->returnValue($exceptions));
     $this->assertEquals($expected, $this->context->getFailureExceptions());
 }