Esempio n. 1
0
 public void IndexTest()
 {
     ITaskRepository taskrepository = null; // TODO: Initialize to an appropriate value
     IUserRepository userrepository = null; // TODO: Initialize to an appropriate value
     TaskController target = new TaskController(taskrepository, userrepository); // TODO: Initialize to an appropriate value
     Nullable<int> page = new Nullable<int>(); // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.Index(page);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }