public function testGetSetWorkflowItem()
 {
     $this->assertNull($this->transitionRecord->getWorkflowItem());
     $value = new WorkflowItem();
     $this->assertEquals($this->transitionRecord, $this->transitionRecord->setWorkflowItem($value));
     $this->assertEquals($value, $this->transitionRecord->getWorkflowItem());
 }