コード例 #1
0
ファイル: NoteTest.cs プロジェクト: dneigler/Status-Again
 public void IdTest()
 {
     Note target = new Note(); // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     target.Id = expected;
     actual = target.Id;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
コード例 #2
0
ファイル: NoteTest.cs プロジェクト: dneigler/Status-Again
 public void AuditInfoTest()
 {
     Note target = new Note(); // TODO: Initialize to an appropriate value
     AuditInfo expected = null; // TODO: Initialize to an appropriate value
     AuditInfo actual;
     target.AuditInfo = expected;
     actual = target.AuditInfo;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
コード例 #3
0
ファイル: NoteTest.cs プロジェクト: dneigler/Status-Again
 public void TextTest()
 {
     Note target = new Note(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     target.Text = expected;
     actual = target.Text;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
コード例 #4
0
ファイル: NoteTest.cs プロジェクト: dneigler/Status-Again
 public void NoteConstructorTest()
 {
     Note target = new Note();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }