public void GetItems_ShouldGetItemsFromStorage()
        {
            this.testee.GetItems();

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