Пример #1
0
 public void EditTest()
 {
     ILedgerEntries budgetEntries = null; // TODO: Initialize to an appropriate value
     HomeController target = new HomeController(budgetEntries); // TODO: Initialize to an appropriate value
     LedgerEntry entry = null; // TODO: Initialize to an appropriate value
     bool add = false; // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.Edit(entry, add);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Пример #2
0
 public void EditTest1()
 {
     ILedgerEntries budgetEntries = null; // TODO: Initialize to an appropriate value
     HomeController target = new HomeController(budgetEntries); // TODO: Initialize to an appropriate value
     int entryID = 0; // TODO: Initialize to an appropriate value
     ViewResult expected = null; // TODO: Initialize to an appropriate value
     ViewResult actual;
     actual = target.Edit(entryID);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }