using MileageTraker.Web.Controllers; using System; using MileageTraker.Web.ViewModels; using System.Web.Mvc; using NUnit.Framework; namespace Web.Tests { /// ///This is a test class for CreateLogControllerTest and is intended ///to contain all CreateLogControllerTest Unit Tests /// [TestFixture] public class CreateLogControllerTest { [Test] public void IndexTest() { var target = new CreateLogController(); CreateLogViewModel model = null; ActionResult expected = null; ActionResult actual; actual = target.Index(model); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); } } }