Exemplo n.º 1
0
        public void GetItems_ShouldGetItemsFromStorage()
        {
            this.testee.GetItems();

            A.CallTo(() => storageService.All()).MustHaveHappened();
        }
Exemplo n.º 2
0
 public List <Item> GetItems()
 {
     return(_itemStorageService.All());
 }