public function testGetErrors()
 {
     $expected = array('Error message');
     $this->stepExecution->expects($this->once())->method('getErrors')->will($this->returnValue($expected));
     $this->assertEquals($expected, $this->context->getErrors());
 }