コード例 #1
0
 public void BuildDeck_DeckListNotFound_ThrowsDeckListNotFoundExceptionn()
 {
     _deckList = null;
     _publicApi.Setup(api => api.GetDeckList(_deckListId)).Returns(_deckList);
     Assert.Throws <DeckListNotFoundException>(() =>
     {
         _deckRepository.GetDestinyDeck(_deckListId);
     });
 }