DisplayMagician/DisplayMagician.Tests/UnitTest1.cs
Terry MacDonald 415ff0eed0 Rename HeliosPlus to DisplayMagician
Decided to rename the application to DisplayMagician
to make it way more discoverable. Turns out there are
a LOT of applications named HeliosPlus!
2020-12-02 21:11:23 +13:00

20 lines
280 B
C#

using NUnit.Framework;
using System.IO;
using System;
namespace DisplayMagician.Tests
{
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}
}