public void GetLowestRankCard_ShouldBeAce() { IDeckOfCards sut = new DeckOfCards(); ICard card = sut.GetLowestRankCard(); Assert.AreEqual(card.GetName().GetValue(), "Ace"); }