예제 #1
0
        public void GetItems_ShouldGetItemsFromStorage()
        {
            this.testee.GetItems();

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