public void AttendeeControllerConstructorTest1()
 {
     AttendeeController target = new AttendeeController();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void AttendeeControllerConstructorTest2()
 {
     IRepository repo = null; // TODO: Initialize to an appropriate value
     AttendeeController target = new AttendeeController(repo);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void AttendeeControllerConstructorTest()
 {
     IRepository repo = _repository;
     AttendeeController target = new AttendeeController(repo);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void IndexTest1()
 {
     AttendeeController target = new AttendeeController(); // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.Index();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void EditTest2()
 {
     AttendeeController target = new AttendeeController(); // TODO: Initialize to an appropriate value
     int id = 0; // TODO: Initialize to an appropriate value
     FormCollection collection = null; // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.Edit(id, collection);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void DeleteTest()
 {
     AttendeeController target = new AttendeeController(_repository); // TODO: Initialize to an appropriate value
     int id = 0; // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.Delete(id);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
        public void CreateTest()
        {
            Initialize();
            AttendeeController target = new AttendeeController(_repository);
            FormCollection collection = ConvertAttendeeToFormCollection(attendee1);
            ActionResult expected = new RedirectToRouteResult(String.Empty, new RouteValueDictionary());
            ActionResult actual = target.Create(collection);

            IQueryable<Attendee> attendeeList = _repository.GetAllAttendees();
            Assert.IsTrue(attendeeList.Contains(attendee1));
        }