public function testGetReadCount()
 {
     $expected = 10;
     $this->stepExecution->expects($this->once())->method('getReadCount')->will($this->returnValue($expected));
     $this->assertEquals($expected, $this->context->getReadCount());
 }