public function testClosed()
 {
     $this->assertFalse($this->workflowItem->isClosed());
     $this->workflowItem->setClosed(true);
     $this->assertTrue($this->workflowItem->isClosed());
 }