コード例 #1
0
ファイル: CardTest.cs プロジェクト: Yaponiz/AdvertBase
 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.");
 }
コード例 #2
0
ファイル: CardTest.cs プロジェクト: Yaponiz/AdvertBase
 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.");
 }
コード例 #3
0
ファイル: CardTest.cs プロジェクト: Yaponiz/AdvertBase
 public void CardConstructorTest()
 {
     Card target = new Card();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }