public function testLabel()
 {
     $this->assertNull($this->workflowDefinition->getLabel());
     $value = 'Example Workflow';
     $this->workflowDefinition->setLabel($value);
     $this->assertEquals($value, $this->workflowDefinition->getLabel());
 }