Remove useless test
This commit is contained in:
@@ -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.");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -56,7 +56,6 @@
|
|||||||
</CodeAnalysisDependentAssemblyPaths>
|
</CodeAnalysisDependentAssemblyPaths>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="CreateLogControllerTest.cs" />
|
|
||||||
<Compile Include="DAL\VehicleImporterTests.cs" />
|
<Compile Include="DAL\VehicleImporterTests.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<Compile Include="Utility\AlgorithmsTests.cs" />
|
<Compile Include="Utility\AlgorithmsTests.cs" />
|
||||||
|
|||||||
Reference in New Issue
Block a user