UnitTest Push

This commit is contained in:
Logophilist
2020-10-28 12:01:20 +01:00
parent da9d3184a1
commit c48e396e81
3 changed files with 44 additions and 0 deletions

15
UnitTestRH/UnitTest1.cs Normal file
View File

@@ -0,0 +1,15 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using RH_Engine;
namespace UnitTestRH
{
[TestClass]
public class UnitTest1
{
[TestMethod]
public void TestMethod1()
{
Command command = new Command("");
}
}
}

View File

@@ -0,0 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.1.0" />
<PackageReference Include="MSTest.TestFramework" Version="2.1.0" />
<PackageReference Include="coverlet.collector" Version="1.2.0" />
</ItemGroup>
</Project>