public function testGetSetEndTime()
 {
     $this->assertNull($this->stepExecution->getEndTime());
     $expectedEndTime = new \DateTime();
     $this->assertEntity($this->stepExecution->setEndTime($expectedEndTime));
     $this->assertEquals($expectedEndTime, $this->stepExecution->getEndTime());
 }
 /**
  * {@inheritDoc}
  */
 public function setEndTime(\DateTime $endTime)
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'setEndTime', array($endTime));
     return parent::setEndTime($endTime);
 }