DisplayMagician/HeliosPlus.Tests1/UnitTest1.cs
terrymacdonald 41c03c30b5 Saving initial MSTest configuration
First part of installing an MSTest suite.
Included some config file to read in
for testing the ShortcutRepository and
the ProfileRepository. Had the data
handy so it made sense to save it :)
2020-07-26 20:52:46 +12:00

20 lines
275 B
C#

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