public void HashCode()
        {
            Card c1 = new Card(9, SuitEnum.ROSE);

            (c1.GetHashCode() == c1.GetFingerprint()).Should().BeTrue();

            c1 = new Card(5, SuitEnum.BLACK);
            (c1.GetHashCode() == c1.GetFingerprint()).Should().BeTrue();
        }