Beispiel #1
0
        public void CanCurrentCardBeatOtherCard(
            Suits currentSuit, int currentValue,
            Suits otherSuit, int otherValue,
            bool expectedResult)
        {
            var currentCard = new Card(currentValue, currentSuit);
            var otherCard   = new Card(otherValue, otherSuit);

            var result = _Sut.CanCurrentCardBeatOtherCard(currentCard, otherCard);

            Assert.AreEqual(expectedResult, result);
        }