public function testGetSetStepToName()
 {
     $this->assertNull($this->transitionRecord->getStepTo());
     $value = $this->getMockBuilder('Oro\\Bundle\\WorkflowBundle\\Entity\\WorkflowStep')->disableOriginalConstructor()->getMock();
     $this->assertEquals($this->transitionRecord, $this->transitionRecord->setStepTo($value));
     $this->assertEquals($value, $this->transitionRecord->getStepTo());
 }