Remove useless test

This commit is contained in:
2012-12-17 13:21:58 -05:00
parent 5be12d783b
commit ca2bf00f32
2 changed files with 0 additions and 31 deletions
-30
View File
@@ -1,30 +0,0 @@
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.");
}
}
}
-1
View File
@@ -56,7 +56,6 @@
</CodeAnalysisDependentAssemblyPaths>
</ItemGroup>
<ItemGroup>
<Compile Include="CreateLogControllerTest.cs" />
<Compile Include="DAL\VehicleImporterTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Utility\AlgorithmsTests.cs" />