public void Converting_Empty_Set_To_Instance_List_Returns_Empty_List()
        {
            List <WorkflowInstancePoco>      instances = new List <WorkflowInstancePoco>();
            List <WorkflowInstanceViewModel> result    = _service.ConvertToWorkflowInstanceList(instances);

            Assert.Empty(result);
        }