Template files for testing RecrownedGTK.Tools.

This commit is contained in:
Harrison Deng 2020-02-21 02:06:56 -05:00
parent e7b506f6a3
commit b67bbc68e5
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="nunit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0"/>
</ItemGroup>
</Project>

View File

@ -0,0 +1,18 @@
using NUnit.Framework;
namespace RecrownedGTK.Tools.Tests
{
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}
}