Initial
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
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.");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user