public function testGetSetStateName()
 {
     $instance = new WorkflowInstanceEntity();
     $this->assertNull($instance->getStateName());
     $instance->setStateName('state');
     $this->assertEquals('state', $instance->getStateName());
 }