public function testConfiguration()
 {
     $this->assertEmpty($this->workflowDefinition->getConfiguration());
     $value = array('some', 'configuration', 'array');
     $this->workflowDefinition->setConfiguration($value);
     $this->assertEquals($value, $this->workflowDefinition->getConfiguration());
 }