本文整理匯總了C#中Santase.Logic.Cards.Card.GetHashCode方法的典型用法代碼示例。如果您正苦於以下問題:C# Card.GetHashCode方法的具體用法?C# Card.GetHashCode怎麽用?C# Card.GetHashCode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Santase.Logic.Cards.Card
的用法示例。
在下文中一共展示了Card.GetHashCode方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: CloneShouldReturnObjectWithTheSameHashCode
public void CloneShouldReturnObjectWithTheSameHashCode()
{
var card = new Card(CardSuit.Spade, CardType.Nine);
var newCard = card.DeepClone();
Assert.IsNotNull(newCard);
Assert.AreEqual(card.GetHashCode(), newCard.GetHashCode());
}
示例2: FromHashCodeShouldCreateCardsWithTheGivenHashCode
public void FromHashCodeShouldCreateCardsWithTheGivenHashCode()
{
foreach (CardSuit cardSuitValue in Enum.GetValues(typeof(CardSuit)))
{
foreach (CardType cardTypeValue in Enum.GetValues(typeof(CardType)))
{
var card = new Card(cardSuitValue, cardTypeValue);
var hashCode = card.GetHashCode();
var newCard = Card.FromHashCode(hashCode);
Assert.AreEqual(card, newCard);
}
}
}
示例3: GetHashCodeShouldReturn52ForKingOfSpades
public void GetHashCodeShouldReturn52ForKingOfSpades()
{
var card = new Card(CardSuit.Spade, CardType.King);
var hashCode = card.GetHashCode();
Assert.AreEqual(52, hashCode);
}
示例4: GetHashCodeShouldReturnDifferentValidValueForEachCardCombination
public void GetHashCodeShouldReturnDifferentValidValueForEachCardCombination()
{
var values = new HashSet<int>();
foreach (CardSuit cardSuitValue in Enum.GetValues(typeof(CardSuit)))
{
foreach (CardType cardTypeValue in Enum.GetValues(typeof(CardType)))
{
var card = new Card(cardSuitValue, cardTypeValue);
var cardHashCode = card.GetHashCode();
Assert.IsFalse(
values.Contains(cardHashCode),
$"Duplicate hash code \"{cardHashCode}\" for card \"{card}\"");
values.Add(cardHashCode);
}
}
}
示例5: GetHashCodeShouldReturn1ForAceOfClubs
public void GetHashCodeShouldReturn1ForAceOfClubs()
{
var card = new Card(CardSuit.Club, CardType.Ace);
var hashCode = card.GetHashCode();
Assert.AreEqual(1, hashCode);
}