예제 #1
0
 public void GetHashCodeTest()
 {
     Card target = new Card(); // TODO: Initialize to an appropriate value
     ICard obj = null; // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     actual = target.GetHashCode(obj);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
예제 #2
0
        public void CardConstructorTest()
        {
            var card = new Card();

            Assert.IsNotNull(card);
        }