Ejemplo n.º 1
0
        public void testCrud()
        {
            //Arrange
            //GetItemsAsync
            var todoItemService = new TodoItemService(_context);
            var getItemsAsync   = todoItemService.GetItemsAsync();

            Assert.True(getItemsAsync.Result.Count > 0);
            //Act

            //Assert
        }