Exemple #1
0
        [InlineData("10")]              // Not in db (returns empty workflow)
        public void GetByIDTest(string id)
        {
            this._context = this.InitContext().Result;
            WorkflowService wkService = new WorkflowService(this._context);

            var result = wkService.GetById(id).Result;

            Assert.NotNull(result);                                // Returned results check
        }