Exemplo n.º 1
0
        public void GetAllTest(int expected)
        {
            this._context = this.InitContext().Result;
            WorkflowService wkService = new WorkflowService(this._context);

            var result = wkService.GetAll().Result.ToList();

            Assert.Equal(result.Count, expected);                                // Returned results check
        }