public void addToBaseTest() { Card target = new Card(); // TODO: Initialize to an appropriate value bool expected = false; // TODO: Initialize to an appropriate value bool actual; actual = target.addToBase(); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void CardCommentTest() { Card target = new Card(); // TODO: Initialize to an appropriate value string expected = string.Empty; // TODO: Initialize to an appropriate value string actual; target.CardComment = expected; actual = target.CardComment; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void CardConstructorTest() { Card target = new Card(); Assert.Inconclusive("TODO: Implement code to verify target"); }