removed some files that doesnt seem to be needed

This commit is contained in:
Terje Sandstrom 2019-03-08 10:08:39 +01:00
Родитель 810d2cbadf
Коммит 626fc90c0d
6 изменённых файлов: 1 добавлений и 92 удалений

Просмотреть файл

@ -1,24 +0,0 @@
using NUnit.Framework;
using System;
namespace $rootnamespace$
{
[SetUpFixture]
public class $safeitemname$
{
[OneTimeSetUp]
public void OneTimeSetUp()
{
// From ItemTemplates folder
// TODO: Add code here that is run before
// all tests in the assembly are run
}
[OneTimeTearDown]
public void OneTimeTearDown()
{
// TODO: Add code here that is run after
// all tests in the assembly have been run
}
}
}

Просмотреть файл

@ -1,25 +0,0 @@
Option Explicit On
Imports System
Imports NUnit.Framework
Namespace $rootnamespace$
<SetUpFixture>
Public Class $safeitemname$
<OneTimeSetUp>
Public Sub OneTimeSetUp()
' TODO Add code here that is run before
' all tests in the assembly are run
End Sub
<OneTimeTearDown>
Public Sub OneTimeTearDown()
' TODO Add code here that is run after
' all tests in the assembly have been run
End Sub
End Class
End Namespace

Просмотреть файл

@ -1,19 +0,0 @@
// Whatever is written in this file is not used.
// NUnit3 Tests, see documentation : https://github.com/nunit/docs/wiki/NUnit-Documentation
using NUnit.Framework;
namespace $rootnamespace$
{
[TestFixture]
public class $safeitemname$
{
[Test]
public void TestMethod()
{
// From ItemTemplates folder
// TODO: Add your test code here
var answer = 43;
Assert.That(answer,Is.EqualTo(42),"Some useful error message");
}
}
}

Просмотреть файл

@ -1,19 +0,0 @@
Option Explicit On
' NUnit3 Tests, see documentation : https://github.com/nunit/docs/wiki/NUnit-Documentation
Imports System
Imports NUnit.Framework
Namespace $rootnamespace$
<TestFixture>
Public Class $safeitemname$
<Test>
Public Sub TestMethod()
' TODO Add your test code here
Assert.Pass("Your first passing test")
End Sub
End Class
End Namespace

Просмотреть файл

@ -75,14 +75,10 @@
</PropertyGroup>
<ItemGroup>
<Content Include="ItemTemplates\Test\NUnit Setup Fixture\icon.png" />
<Content Include="ItemTemplates\Test\NUnit Setup Fixture\SetupFixture.vb" />
<Content Include="ItemTemplates\Test\NUnit Test Fixture\TestClass.cs" />
<Content Include="ItemTemplates\Test\NUnit Setup Fixture\SetupFixture.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="ItemTemplates\Test\NUnit Test Fixture\icon.png" />
<Content Include="ItemTemplates\Test\NUnit Test Fixture\TestClass.vb" />
<Content Include="ItemTemplates\Test\NUnit Test Fixture\Definitions\CSharp.vstemplate">
<SubType>Designer</SubType>
</Content>

Просмотреть файл

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="nunit.templates.b29e95b8-bf26-4f03-983d-f1d0f21ad6ef" Version="1.4.11" Language="en-US" Publisher="Rob Prouse" />
<Identity Id="nunit.templates.b29e95b8-bf26-4f03-983d-f1d0f21ad6ef" Version="1.4.13" Language="en-US" Publisher="Rob Prouse" />
<DisplayName>NUnit VS Templates</DisplayName>
<Description xml:space="preserve">Provides Visual Studio project and item templates for NUnit 3 along with code snippets.</Description>
<MoreInfo>https://github.com/nunit/nunit-vs-templates</MoreInfo>