Files
MileageTraker/Web.Tests/CreateLogControllerTest.cs
T
2012-11-30 21:35:06 -05:00

31 lines
708 B
C#

using MileageTraker.Web.Controllers;
using System;
using MileageTraker.Web.ViewModels;
using System.Web.Mvc;
using NUnit.Framework;
namespace Web.Tests
{
/// <summary>
///This is a test class for CreateLogControllerTest and is intended
///to contain all CreateLogControllerTest Unit Tests
///</summary>
[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.");
}
}
}