public function testGetSetStepToName()
 {
     $this->assertNull($this->transitionRecord->getStepToName());
     $value = 'step_to_name';
     $this->assertEquals($this->transitionRecord, $this->transitionRecord->setStepToName($value));
     $this->assertEquals($value, $this->transitionRecord->getStepToName());
 }