Esempio n. 1
0
 public void AddTest()
 {
     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
     Task t = null; // TODO: Initialize to an appropriate value
     JsonResult expected = null; // TODO: Initialize to an appropriate value
     JsonResult actual;
     actual = target.Add(t);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }